Skip to content

Instantly share code, notes, and snippets.

@kgaughan
Created December 1, 2008 18:45
Show Gist options
  • Save kgaughan/30801 to your computer and use it in GitHub Desktop.
Save kgaughan/30801 to your computer and use it in GitHub Desktop.
if (!is_well_formed_email_address($email)) {
echo "Email address is not well-formed.\n";
} else {
list(, $host) = explode('@', $email, 2);
if (can_host_receive_mail($host)) {
echo "Host $host can receive mail.\n";
} else {
echo "Host $host can't receive mail.\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment