Click here to Skip to main content
15,893,814 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to check the email existance in C#.net windows form application example test@gmail.com this type of existance in want to check????Can anyone help me to resolve this problem
Posted

No, you cannot do it. A good explanation as to why is here, http://stackoverflow.com/questions/3883518/can-i-check-if-an-email-address-exists-using-net[^]

Essentially, you can't ask an email server if the email is valid.
 
Share this answer
 
It is impossible, until you send a message and receive some response. This is not how mail system works. You can send a mail requesting delivery confirmation, it may or may not work. Some hosts will give you automatic response if the mail address on their host does not exist, but mail is rarely configured that way as it could simplify the work of the spammers. So, there is nothing you could rely on.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900