0

如何使用 ASP.NET 检查给定的电子邮件(任何有效的电子邮件)地址是否存在?

4

5 回答 5

1
you send invitation mail to user with encrypted key..
If user is verified you have to verified key and you have only verified email..
于 2012-10-03T11:26:38.790 回答
1

如果不实际发送邮件,则无法检查电子邮件是否存在。

您唯一可以检查的是地址是否具有正则表达式的正确形状:

string email = txtemail.Text;
Regex regex = new Regex(@"^([\w\.\-]+)@([\w\-]+)((\.(\w){2,3})+)$");
Match match = regex.Match(email);
if (match.Success)
    Response.Write(email + " is corrct");
else
    Response.Write(email + " is incorrct");
于 2012-10-03T11:34:04.787 回答
0

这是一个可能适合您的代码解决方案。此示例从不同于 From: 消息中指定的地址的地址发送消息。当应处理退回的消息并且开发人员希望将退回的消息重定向到另一个地址时,这很有用。

http://www.afterlogic.com/mailbee-net/docs/MailBee.SmtpMail.Smtp.Send_overload_3.html

于 2012-10-03T11:54:43.140 回答
0

整个过程并不是那么简单。它需要与电子邮件服务器进行全面通信,并询问他此电子邮件是否存在。

我知道一个供应商提供一个 dll 来进行所有这些通信并检查服务器上是否存在电子邮件, http://www.advancedintellect.com/product.aspx? mx 上的 aspNetMX

于 2012-10-03T12:14:06.260 回答
0

首先你需要导入这个命名空间:

using System.Text.RegularExpressions;

private bool ValidateEmail(string email)
{
    Regex regex = new Regex(@"^([\w\.\-]+)@([\w\-]+)((\.(\w){2,3})+)$");
    Match match = regex.Match(email);
    if (match.Success)
        return true;
    else
        return false;
}

访问这里查看完整的源代码。

于 2014-01-12T06:31:38.947 回答