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? Thanks!
|
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? Thanks! | |||
|
feedback
|
|
There are two methods you can sometimes use to determine if a recipient actually exists:
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. | |||||||||
feedback
|
|
Some issues:
| |||||
feedback
|
|
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. | ||||
|
feedback
|
|
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.... | |||
|
feedback
|
|
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 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: 250 Ok rcpt to: 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
| |||
|
feedback
|
|
"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. | |||||
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
no serious SMTP server will give you out what addresses exist. this would just allow spammers to find out what address exist. | |||
|
feedback
|
|
I always check if MX records are available/visible via this website: http://my-addr.com/check-email-or-check-find-view-domain-mx-records/mx-record-lookup/domain_mx.php | |||
|
feedback
|
|
| |||
|
feedback
|
|
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. | |||
feedback
|
|
I think this should be a bad experience for smtp server if they allow you to check this. Spammer is now illegal no one should risk of doing that. | |||
|
feedback
|