How to check if an email address exists without sending an email?
Asked Answered
H

15

147

I have come across this PHP code to check email address using SMTP without sending an email.

Has anyone tried anything similar or does it work for you? Can you tell if an email customer / user enters is correct & exists?

Holtz answered 19/2, 2009 at 14:20 Comment(4)
Similar question: Can I check if an email address exists using .net?Jocose
Just wondering, why does this have the Telnet tag?Nitrosyl
There's a PHP library that does exactly that: github.com/kickboxio/kickbox-phpRonironica
Kickbox isn't Free. This API is just an wrapper to connect to their service.Procathedral
B
110

There are two methods you can sometimes use to determine if a recipient actually exists:

  1. You can connect to the server, and issue a VRFY command. Very few servers support this command, but it is intended for exactly this. If the server responds with a 2.0.0 DSN, the user exists.

    VRFY user
    
  2. You can issue a RCPT, and see if the mail is rejected.

    MAIL FROM:<>
    RCPT TO:<user@domain>
    

If the user doesn't exist, you'll get a 5.1.1 DSN. However, just because the email is not rejected, does not mean the user exists. Some server will silently discard requests like this to prevent enumeration of their users. Other servers cannot verify the user and have to accept the message regardless.

There is also an antispam technique called greylisting, which will cause the server to reject the address initially, expecting a real SMTP server would attempt a re-delivery some time later. This will mess up attempts to validate the address.

Honestly, if you're attempting to validate an address the best approach is to use a simple regex to block obviously invalid addresses, and then send an actual email with a link back to your system that will validate the email was received. This also ensures that they user entered their actual email, not a slight typo that happens to belong to somebody else.

Boardman answered 19/2, 2009 at 16:33 Comment(6)
Some servers will even accept the message but then later send a error message back to the envelope sender, especially if its a large organization with many internal departments with their own mail servers. The border server might not even know all accounts within.Unfrequented
Then why don't spammers use this method to verify email addies? I mean aside the fact that these methods are supported by very few servers. Or do they?Yvette
@Shehi: Actually spammers may use this method, that's hard to tell. However, because spammers might use it, almost all mail servers disable VRFY, so in practice VRFY is probably useless.Jocose
Can you give a code example of how to use a RCPT TO:<user@domain> ? ThanksAmboceptor
To VRFY, gmail responds "Send some mail, I'll try my best" ;-)Adrell
Regex that can satisfy requirement: ^[^@\s]+@[^@\s\.]+\.[^@\s\.]+$ The validation statement is: <anything except whitespaces and "@" sign>@<anything except whitespaces and "@" sign >.<anything except whitespaces, @ sign and dot > Additionally once can also do this: <e-mail localpart >@<domain name > For <e-mail local part > - Follow the guidelines by the "Universal Acceptance Steering Group" - [UASG-026] For <domain name >, follow any domain validation methodology using standard libraries, depending on your language. Additionally follow the document [UASG-018A]Musky
L
57

Other answers here discuss the various problems with trying to do this. I thought I'd show how you might try this in case you wanted to learn by doing it yourself.

You can connect to an mail server via telnet to ask whether an email address exists. Here's an example of testing an email address for stackoverflow.com:

C:\>nslookup -q=mx stackoverflow.com
Non-authoritative answer:
stackoverflow.com       MX preference = 40, mail exchanger = STACKOVERFLOW.COM.S9B2.PSMTP.com
stackoverflow.com       MX preference = 10, mail exchanger = STACKOVERFLOW.COM.S9A1.PSMTP.com
stackoverflow.com       MX preference = 20, mail exchanger = STACKOVERFLOW.COM.S9A2.PSMTP.com
stackoverflow.com       MX preference = 30, mail exchanger = STACKOVERFLOW.COM.S9B1.PSMTP.com

C:\>telnet STACKOVERFLOW.COM.S9A1.PSMTP.com 25
220 Postini ESMTP 213 y6_35_0c4 ready.  CA Business and Professions Code Section 17538.45 forbids use of this system for unsolicited electronic mail advertisements.

helo hi
250 Postini says hello back

mail from: <[email protected]>
250 Ok

rcpt to: <[email protected]>
550-5.1.1 The email account that you tried to reach does not exist. Please try
550-5.1.1 double-checking the recipient's email address for typos or
550-5.1.1 unnecessary spaces. Learn more at
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596 w41si3198459wfd.71

Lines prefixed with numeric codes are responses from the SMTP server. I added some blank lines to make it more readable.

Many mail servers will not return this information as a means to prevent against email address harvesting by spammers, so you cannot rely on this technique. However you may have some success at cleaning out some obviously bad email addresses by detecting invalid mail servers, or having recipient addresses rejected as above.

Note too that mail servers may blacklist you if you make too many requests of them.


In PHP I believe you can use fsockopen, fwrite and fread to perform the above steps programmatically:

$smtp_server = fsockopen("STACKOVERFLOW.COM.S9A1.PSMTP.com", 25, $errno, $errstr, 30);
fwrite($smtp_server, "helo hi\r\n");
fwrite($smtp_server, "mail from: <[email protected]>\r\n");
fwrite($smtp_server, "rcpt to: <[email protected]>\r\n");
Largeminded answered 18/12, 2010 at 16:9 Comment(5)
hats off! one problem I found is, does port 25 always works with low priority mx record??Pavement
@DhruvenkumarShah, sorry I don't know. If you find out, please comment again.Largeminded
Hi, I was just trying for my own university account to find out all about MX records but it did not work for 25.. but the online verify-email.org kind of website did work.. how they are doing it.. I will let you know about it if I find it outPavement
@DhruvenkumarShah it gives few mail exchange server names. see the answer for mail exchangers. so if one fails, other from the list should works.Musset
really very help full to mee.. thank you sir..i tried it in putty and works like charms.. thanks..Gae
W
11

The general answer is that you can not check if an email address exists event if you send an email to it: it could just go into a black hole.

That being said the method described there is quite effective. It is used in production code in ZoneCheck except that it uses RSET instead of QUIT.

Where user interaction with his mailbox is not overcostly many sites actually test that the mail arrive somewhere by sending a secret number that must be sent back to the emitter (either by going to a secret URL or sending back this secret number by email). Most mailing lists work like that.

Wove answered 19/2, 2009 at 14:27 Comment(0)
L
8

This will fail (amongst other cases) when the target mailserver uses greylisting.

Greylisting: SMTP server refuses delivery the first time a previously unknown client connects, allows next time(s); this keeps some percentage of spambots out, while allowing legitimate use - as it is expected that a legitimate mail sender will retry, which is what normal mail transfer agents will do.

However, if your code only checks on the server once, a server with greylisting will deny delivery (as your client is connecting for the first time); unless you check again in a little while, you may be incorrectly rejecting valid e-mail addresses.

Lambertson answered 20/5, 2011 at 17:38 Comment(1)
(personal experience: I had to argue back and forth with my e-mail provider that yes, I'm aware what I'm doing, and yes, I need the greylisting off - because these checks from a third-party service were failing)Lambertson
W
8

I can confirm Joseph's and Drew's answers to use RCPT TO: <address_to_check>. I would like to add some little addenda on top of those answers.

Catch-all providers

Some mail providers implement a catch-all policy, meaning that *@mydomain.com will return positive to the RCPT TO: command. But this doesn't necessarily mean that the mailbox "exists", as in "belongs to a human". Nothing much can be done here, just be aware.

IP Greylisting/Blacklisting

Greylisting: 1st connection from unknown IP is blocked. Solution: retry at least 2 times.

Blacklisting: if you send too many requests from the same IP, this IP is blocked. Solution: use IP rotation.

HTTP requests on sign-up forms

This is very provider-specific, but you sometimes can use well-crafted HTTP requests, and parse the responses of these requests to see if a username already signed up or not with this provider. Headless browser automation on a password recovery page might also do the trick.

Full Inbox

This might be an edge case, but when the user has a full inbox, RCTP TO: will return a 5.1.1 DSN error message saying it's full. This means that the account actually exists!

Wellintentioned answered 14/6, 2020 at 11:45 Comment(2)
Your code is good but for some emails those I tested, the result is not as expected!Gwynethgwynne
It helps if you don't misspell RCPT (abbreviation for "re-ci-pien-t").Excruciate
H
7

Not really.....Some server may not check the "rcpt to:"

http://www.freesoft.org/CIE/RFC/1123/92.htm

Doing so is security risk.....

If the server do, you can write a bot to discovery every address on the server....

Heedful answered 19/2, 2009 at 14:26 Comment(1)
i was thinking about that too :)Musset
I
7

Some issues:

  1. I'm sure some SMTP servers will let you know immediately if an address you give them does not exist, but some won't as a privacy measure. They'll just accept whatever addresses you give them and silently ignore the ones that don't exist.
  2. As the article says, if you do this too often with some servers, they will blacklist you.
  3. For some SMTP servers (like gmail), you need to use SSL in order to do anything. This is only true when using gmail's SMTP server to send email.
Ipswich answered 19/2, 2009 at 14:27 Comment(2)
Regarding the third point, this only happen if you want to use it as a relay. I do not know of any mail exchanger that requires SSL. If any did this they would stop receiving email from many users.Wove
Sorry, my mistake. If you want to send email using gmail's SMTP server, you must use SSL.Ipswich
S
5

About all you can do is search DNS and ensure the domain that is in the email address has an MX record, other than that there is no reliable way of dealing with this.

Some servers may work with the rcpt-to method where you talk to the SMTP server, but it depends entirely on the configuration of the server. Another issue may be an overloaded server may return a 550 code saying user is unknown, but this is a temporary error, there is a permanent error (451 i think?) that can be returned. This depends entirely on the configuration of the server.

I personally would check for the DNS MX record, then send an email verification if the MX record exists.

Sublieutenant answered 19/2, 2009 at 15:47 Comment(0)
K
3

Assuming it's the user's address, some mail servers do allow the SMTP VRFY command to actually verify the email address against its mailboxes. Most of the major site won't give you much information; the gmail response is "if you try to mail it, we'll try to deliver it" or something clever like that.

Koumis answered 19/2, 2009 at 15:2 Comment(0)
V
3
function EmailValidation($email)
{
    $email = htmlspecialchars(stripslashes(strip_tags($email))); //parse unnecessary characters to prevent exploits
    if (eregi('[a-z||0-9]@[a-z||0-9].[a-z]', $email)) {
        //checks to make sure the email address is in a valid format
        $domain = explode( "@", $email ); //get the domain name
        if (@fsockopen ($domain[1],80,$errno,$errstr,3)) {
            //if the connection can be established, the email address is probably valid
            echo "Domain Name is valid ";
            return true;
        } else {
            echo "Con not a email domian";
            return false; //if a connection cannot be established return false
        }
        return false; //if email address is an invalid format return false
    }
}
Vasodilator answered 11/2, 2014 at 7:2 Comment(4)
port 80 doesn't make senseAlmonry
I think that's just checking the domain name exists rather than checking the email itself.Tutor
This might be more useful: getmxrrWenger
Not every domain has an web server behind it...Mistassini
L
3

Although this question is a bit old, this service tip might help users searching for a similar solution checking email addresses beyond syntax validation prior to sending.

I have been using this open sourced service for a more in depth validating of emails (checking for mx records on the e-mail address domain etc.) for a few projects with good results. It also checks for common typos witch is quite useful. Demo here.

Lazarus answered 16/6, 2016 at 7:25 Comment(2)
You claim this service is open-source. Could you provide a link to the source?Wellintentioned
I'm sorry @amaurymartiny I cannot. At the time of writing the Mailgun project was open source if I recall correctly but I am unable to find a link to any repo providing the source after thist time.Lazarus
S
2

"Can you tell if an email customer / user enters is correct & exists?"

Actually these are two separate things. It might exist but might not be correct.

Sometimes you have to take the user inputs at the face value. There are many ways to defeat the system otherwise.

Solution answered 19/2, 2009 at 14:41 Comment(2)
+1 You can never be sure that it is correct without sending an email and actually getting a human response for it, such as clicking a link.Suicide
you can keep a link(for an image etc) in email body and count each load for that link. no need to wait for clicksMusset
J
2

I think you cannot, there are so many scenarios where even sending an e-mail can fail. Eg. mail server on the user side is temporarily down, mailbox exists but is full so message cannot be delivered, etc.

That's probably why so many sites validate a registration after the user confirmed they have received the confirmation e-mail.

Joviality answered 19/2, 2009 at 15:7 Comment(0)
P
1

You have many simple online tools like https://mail7.net

This service check the email address format, then make sure the domain name is valid and extracts the MX records. So in 90% you can be sure if it valid. 90% because some mail servers are not involved in the process.

Photooffset answered 20/5, 2022 at 21:56 Comment(0)
D
-12
<?php

   $email = "someone@exa mple.com";

   if(!filter_var($email, FILTER_VALIDATE_EMAIL))
      echo "E-mail is not valid";
   else
      echo "E-mail is valid";

?>
Duplicature answered 2/12, 2014 at 5:33 Comment(1)
The user is asking for a .Net solution not php.Schell

© 2022 - 2024 — McMap. All rights reserved.