Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to verify if a email address exists?

Tags:

c#

Is there any possible way to find out if an email address exists in c#?

e.g. I have an email address like [email protected] or [email protected] How can I do the validation?

like image 579
smartali89 Avatar asked May 01 '10 13:05

smartali89


2 Answers

Once upon a time the Internet and the SMTP mail transfer protocol was invented. It was back in the good old days when everyone were nice and friendly, so a command was included in the SMTP protocol to verify email addresses - the VRFY command.

However, darkness came upon the Internet and brought spammers, worms and other evil, so the sysadmins of the Internet mail servers defended what was good by disabling the VRFY command.

So the short answer is: No.

like image 159
Anders Abel Avatar answered Oct 01 '22 15:10

Anders Abel


The most obvious way is to send an email to the mail address and ask the recipient to reply or click a link.

like image 35
Lasse V. Karlsen Avatar answered Oct 01 '22 14:10

Lasse V. Karlsen