Is there a way to check if a mailing address exists without sending test mail?

Possible duplicate:
How to check if a mailing address exists without sending email?

I am trying to find a way to check if an email address really exists without sending a test mail.

You can verify the email address, but is not guaranteed if the address really exists. as

abc@example.com 

Is there any way to avoid this?

thanks

+4
source share
1 answer

The short answer is no, the only way to check it exists is to connect to the mail server and send it an email.

Additional Information: Can I check if the mailing address exists using .net?

"SMTP defines a team for this, but since abuse by spammers completely overloads the number of legitimate targets, almost every email server in the world is set to false."

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

+9
source

Source: https://habr.com/ru/post/1438586/


All Articles