Snippet Name: Validate email address #2 Description: Validates an email address format. Also see:» Send iCal Email Meeting Requests using... » Is email deliverable? » Email attachments with PHP mail() » Email with attachments class » Heavy-duty SendMail function » Use SendMail » Automatically process email » Live validation of email address » Fake email addresses » Validate email address #3 » Validate email address one Comment: (none) Language: PHP Highlight Mode: PHP Last Modified: March 16th, 2009
Description: Validates an email address format.
Also see:» Send iCal Email Meeting Requests using... » Is email deliverable? » Email attachments with PHP mail() » Email with attachments class » Heavy-duty SendMail function » Use SendMail » Automatically process email » Live validation of email address » Fake email addresses » Validate email address #3 » Validate email address one
<?PHP FUNCTION checkEmail($email) { IF (EREG("^[a-zA-Z0-9][a-zA-Z0-9_\.\-]*[@][a-zA-Z0-9\.\-]*[\.][a-zA-Z]{2,4}$", $email)) { RETURN TRUE; } ELSE { RETURN FALSE; } } ?>