Searched refs:email (Results 1 – 9 of 9) sorted by relevance
/web-php/include/ |
H A D | email-validation.inc | 4 function clean_AntiSPAM($email) 7 return preg_replace($remove_spam, "", trim($email)); 10 // Try to check that this email address is valid 11 function is_emailable_address($email) 13 $email = filter_var($email, FILTER_VALIDATE_EMAIL); 14 // No email, no validation 15 if (!$email) { 19 $host = substr($email, strrpos($email, '@') + 1); 36 * Add email addresses, domains, or partial-match patterns 39 * match legitimate email addresses! For example: [all …]
|
/web-php/tests/Unit/ |
H A D | CleanAntiSpamTest.php | 19 string $email, argument 23 $cleanedEmail = clean_AntiSPAM($email); 47 foreach ($values as $email => $expectedEmail) { 48 yield $email => [ 49 $email,
|
H A D | IsEmailableAddressTest.php | 18 public function testIsEmailableAddressReturnsFalseWhenEmailIsInvalid(string $email): void argument 20 $isEmailableAddress = is_emailable_address($email); 46 public function testIsEmailableAddressReturnsTrueWhenEmailIsValid(string $email): void argument 48 $isEmailableAddress = is_emailable_address($email);
|
/web-php/ |
H A D | composer.lock | 122 "email": "j.boggiano@seld.be", 333 "email": "igor@wiedler.ch" 2908 "email": "p@tchwork.com" 3056 "email": "p@tchwork.com" 3410 "email": "p@tchwork.com" 3491 "email": "p@tchwork.com" 3572 "email": "p@tchwork.com" 3653 "email": "p@tchwork.com" 3729 "email": "p@tchwork.com" 3871 "email": "p@tchwork.com" [all …]
|
H A D | git-php.php | 64 if (empty($_POST['email']) || !is_emailable_address($_POST['email'])) { 84 "email" => $_POST['email'],
|
/web-php/.github/ |
H A D | CONTRIBUTING.md | 121 fighting publicly - take it up in private email.
|
/web-php/releases/ |
H A D | NEWS_5_4_0_beta2.txt | 854 . Implemented FR #53812 (get MIME headers of the part of the email). (Stas) 922 (ef-lists at email dotde)
|
H A D | NEWS_5_4_0_RC1.txt | 899 . Implemented FR #53812 (get MIME headers of the part of the email). (Stas) 967 (ef-lists at email dotde) 3022 - Fixed bug #47282 (FILTER_VALIDATE_EMAIL is marking valid email addresses 3438 - Fixed bug #44445 (email validator does not handle domains starting/ending with a -). (Ilia) 4337 - Fixed the validate email filter so that the letter "v" can also be used in 4338 the user part of the email address. (Derick) 5437 multipart-multiboundary-email). (Ilia)
|
H A D | NEWS_5_4_0_beta1.txt | 803 . Implemented FR #53812 (get MIME headers of the part of the email). (Stas) 871 (ef-lists at email dotde) 2926 - Fixed bug #47282 (FILTER_VALIDATE_EMAIL is marking valid email addresses 3342 - Fixed bug #44445 (email validator does not handle domains starting/ending with a -). (Ilia) 4241 - Fixed the validate email filter so that the letter "v" can also be used in 4242 the user part of the email address. (Derick) 5341 multipart-multiboundary-email). (Ilia)
|
Completed in 52 milliseconds