Lines Matching refs:email
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);
26 // When no MX-Entry can be found it's for sure not a valid email-address.
36 * Add email addresses, domains, or partial-match patterns
39 * match legitimate email addresses! For example:
44 function blacklisted($email) {
106 if (preg_match('/' . preg_quote($m, '/') . '/i',$email)) return true;