//------------------------------------------------------------------------------------------------------
//VerifyEmailAddress($EMail)            VerifyEmailAddress($EMail)
//------------------------------------------------------------------------------------------------------
//      What it does-
//                  Verifies an e-mail address by splitting it at '@' and pinging the domain.
//
//      Changes -
//            August 4th, 2006 - RaX - Changed Split() to Explode() for speed.
//            August 3rd, 2006 - RaX - Created.
//
//------------------------------------------------------------------------------------------------------
function VerifyEmailAddress($EMail){
        list($User, $Domain) = explode("@", $EMail);
        $Result = checkdnsrr($Domain, 'MX');
        return($Result);
}