Home
last modified time | relevance | path

Searched refs:email (Results 1 – 9 of 9) sorted by relevance

/web-php/include/
H A Demail-validation.inc4 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 DCleanAntiSpamTest.php19 string $email, argument
23 $cleanedEmail = clean_AntiSPAM($email);
47 foreach ($values as $email => $expectedEmail) {
48 yield $email => [
49 $email,
H A DIsEmailableAddressTest.php18 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 Dcomposer.lock114 "email": "j.boggiano@seld.be",
325 "email": "igor@wiedler.ch"
2896 "email": "p@tchwork.com"
3044 "email": "p@tchwork.com"
3396 "email": "p@tchwork.com"
3477 "email": "p@tchwork.com"
3558 "email": "p@tchwork.com"
3639 "email": "p@tchwork.com"
3715 "email": "p@tchwork.com"
3857 "email": "p@tchwork.com"
[all …]
H A Dgit-php.php64 if (empty($_POST['email']) || !is_emailable_address($_POST['email'])) {
84 "email" => $_POST['email'],
/web-php/.github/
H A DCONTRIBUTING.md121 fighting publicly - take it up in private email.
/web-php/releases/
H A DNEWS_5_4_0_beta2.txt854 . Implemented FR #53812 (get MIME headers of the part of the email). (Stas)
922 (ef-lists at email dotde)
H A DNEWS_5_4_0_RC1.txt899 . 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 DNEWS_5_4_0_beta1.txt803 . 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 50 milliseconds