Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to test if an E-Mail address exists without sending a test mail? [duplicate]

Tags:

email

smtp

Possible Duplicate:
How to check if an email address exists without sending an email?

I am trying to find some way to test if an E-mail address actually exists without sending a test mail.

One can validate e-mail address but is not guaranteed if the address actually exists. like

[email protected]

Is there a way to avoid this?

Thank you

like image 468
user160820 Avatar asked Oct 09 '12 07:10

user160820


1 Answers

Short answer is no - the only way to validate it exists is to connect to the mail server and send an email to it.

Some more info : Can I check if an email address exists using .net?

"SMTP defines a command for this, but since abuse by spammers totally overwhelmed the number of legitimate uses, virtually every e-mail server in the world is configured to lie."

Another similar question : How to check if an email address exists without sending an email?

like image 187
LiamB Avatar answered Oct 16 '22 19:10

LiamB