kgaughan (owner)

Revisions

gist: 30801 Download_button fork
public
Public Clone URL: git://gist.github.com/30801.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
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";
    }
}