Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a question, i have a php script to check if the email address exist.

But appear that yahoo, hotmail, aol and others providers are accepting any emails and not rejecting the invalid emails.

Only Gmail, and many domains like stackoverflow.com are rejecting the no vaild emails.

Check my script and let me know if i can do some to check the yahoo and others.

html post form

<html>
<body>
<form action="checkemail.php" method="POST">
<b>E-mail</b> <input type="text" name="email">
<input type="submit">
</form>
</body>
</html>

php

<?php

/* Validate an email address. */
function jValidateEmailUsingSMTP($sToEmail, $sFromDomain = "gmail.com", $sFromEmail = "email@gmail.com", $bIsDebug = false) {

    $bIsValid = true; // assume the address is valid by default..
    $aEmailParts = explode("@", $sToEmail); // extract the user/domain..
    getmxrr($aEmailParts[1], $aMatches); // get the mx records..

    if (sizeof($aMatches) == 0) {
        return false; // no mx records..
    }

    foreach ($aMatches as $oValue) {

        if ($bIsValid && !isset($sResponseCode)) {

            // open the connection..
            $oConnection = @fsockopen($oValue, 25, $errno, $errstr, 30);
            $oResponse = @fgets($oConnection);

            if (!$oConnection) {

                $aConnectionLog['Connection'] = "ERROR";
                $aConnectionLog['ConnectionResponse'] = $errstr;
                $bIsValid = false; // unable to connect..

            } else {

                $aConnectionLog['Connection'] = "SUCCESS";
                $aConnectionLog['ConnectionResponse'] = $errstr;
                $bIsValid = true; // so far so good..

            }

            if (!$bIsValid) {

                if ($bIsDebug) print_r($aConnectionLog);
                return false;

            }

            // say hello to the server..
            fputs($oConnection, "HELO $sFromDomain\r\n");
            $oResponse = fgets($oConnection);
            $aConnectionLog['HELO'] = $oResponse;

            // send the email from..
            fputs($oConnection, "MAIL FROM: <$sFromEmail>\r\n");
            $oResponse = fgets($oConnection);
            $aConnectionLog['MailFromResponse'] = $oResponse;

            // send the email to..
            fputs($oConnection, "RCPT TO: <$sToEmail>\r\n");
            $oResponse = fgets($oConnection);
            $aConnectionLog['MailToResponse'] = $oResponse;

            // get the response code..
            $sResponseCode = substr($aConnectionLog['MailToResponse'], 0, 3);
            $sBaseResponseCode = substr($sResponseCode, 0, 1);

            // say goodbye..
            fputs($oConnection,"QUIT\r\n");
            $oResponse = fgets($oConnection);

            // get the quit code and response..
            $aConnectionLog['QuitResponse'] = $oResponse;
            $aConnectionLog['QuitCode'] = substr($oResponse, 0, 3);

            if ($sBaseResponseCode == "5") {
                $bIsValid = false; // the address is not valid..
            }

            // close the connection..
            @fclose($oConnection);

        }

    }

    if ($bIsDebug) {
        print_r($aConnectionLog); // output debug info..
    }

    return $bIsValid;

}
$email = $_POST['email'];

$bIsEmailValid = jValidateEmailUsingSMTP("$email", "gmail.com", "email@gmail.com");
echo $bIsEmailValid ? "<b>Valid!</b>" : "Invalid! :(";
?>
share|improve this question
3  
This is not very reliable way to verify email addresses. Many server wont properly return code indicating if an email exists or not to prevent spam harvesting. – datasage Jan 21 at 22:54
4  
I think that many providers will not let you test out email addresses like this (because this same technique can be used by someone to mine valid emails for spam). The only real way to verify an email address is to send a an email with a unique token and have a mechanism that allows the user to enter the token into your application to confirm that they received the email. – larsks Jan 21 at 22:54
3  
this will never work with any degree of reliability – Dagon Jan 21 at 22:58
1  
The typical flow is to send a verification email to the address and have to user perform the verification either via pressing a link inside the email or enter some code; replying to the email is yet another option. – Jack Jan 21 at 23:02
1  
well you cant. end of story :( – Dagon Jan 21 at 23:08
show 4 more comments

2 Answers

If you need to make super sure that an E-Mail address exists, send an E-Mail to it. It should contain a link with a random ID. Only when that link is clicked, and contains the correct random ID, the user's account is activated (or ad published, or order sent, or whatever it is that you are doing).

This is the only reliable way to verify the existence of an E-Mail address, and to make sure that the person filling in the form has access to it.

share|improve this answer
but of course we all use those disposable addresses, so its only 'valid' for a very short period of time – Dagon Jan 21 at 23:04

There is no reliable way of checking the validity of an email address. If you want at least some checking then there are at least 3 things you can do:

1. Check that it is formatted correctly

if (filter_var($email, FILTER_VALIDATE_EMAIL) !== FALSE) {
    echo 'Valid email address formatting!';
}

2. Check that the DNS record exists for the domain name

$domain = substr($email, strpos($email, '@'));
if  (checkdnsrr($domain) !== FALSE) {
    echo 'Domain is valid!';
}

3. Send a verification email to the address

If the email is not responded to after, say, 3 hours then it is probably not a valid address.

There are some examples in the documentation for checkdnsrr.

share|improve this answer
try the script please. yahoo is getting valid for 12xyzabcdefg@yahoo.com so for yahoo user i cannot check. – Neo Castelli Jan 21 at 23:08
ok, but here i can check if the domain exist, is easy to check in browswer this, and to check if is good formated is not reliable for me. Thanks – Neo Castelli Jan 21 at 23:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.