Return to Snippet

Revision: 16865
at August 18, 2009 05:19 by level09


Initial Code
function is_valid_email($email, $test_mx = false)
{
	if(eregi("^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$", $email))
		if($test_mx)
		{
			list($username, $domain) = split("@", $email);
			return getmxrr($domain, $mxrecords);
		}
		else
			return true;
	else
		return false;
}

Initial URL


Initial Description


Initial Title
Validate Email Address

Initial Tags


Initial Language
PHP