How to verify if a email address exists?

前端 未结 5 1169
不知归路
不知归路 2020-12-11 06:25

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

e.g. I have an email address like abcded@yahoo.com or asdf234@hotmail.com How can I do the va

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-11 07:01

    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.

提交回复
热议问题