0

简介:我支持在成功注册到站点后发送欢迎/确认邮件的一段代码。

SMTP 客户端在发送完成之前超时。根据我们的运营部门的说法,我使用了正确的凭据和 SMTP 服务器 IP 地址。

我想要做的是挂钩任何握手、连接、发送等事件,这样我就可以准确地找出进程超时的原因。我已在该页面上将 Server.ScriptTimeOut 设置为 500 秒,因此它不仅仅是一个繁忙的服务器问题。

我的问题是:在此过程中我可以处理哪些事件。我在 SMTPClient 中看到的唯一一个是 SendCompleted。但我想一定有一种方法可以访问更底层的东西?

作为参考,下面是代码:

//Create and send email
MailMessage mm = new MailMessage();
try
{
    mm.From = new MailAddress("admin@site.com");
    mm.To.Add(new MailAddress(Recipient));
    mm.Subject = Subject;
    mm.Body = MailBody;
    mm.IsBodyHtml = true;

    var c = new NetworkCredential("admin@site.com", "YeOlePassword");

    SmtpClient smtp = new SmtpClient("127.0.0.1");//not really, just hiding our SMTP IP from StackOverflow

    smtp.UseDefaultCredentials = false;
    smtp.Credentials = c;
    smtp.Send(mm);

}
catch (Exception x)
{
    DateTime CurrentDateTime = DateTime.Now;
    String appDateTime = CurrentDateTime.ToString();

    String transactionLogEntry = "To: " + Recipient + " " + appDateTime + " " + x.Message;
    StreamWriter streamwriter = new StreamWriter(File.Open(MapPath("~/TransactionLog.txt"), FileMode.Append, FileAccess.Write, FileShare.Write));

    //Append to file
    streamwriter.WriteLine(transactionLogEntry);
    //Close file
    streamwriter.Close();
}

记录的错误只是向提供的电子邮件地址发送邮件时发生超时。

4

1 回答 1

1

我用它来获取隐藏的 SMTP 消息。

String transactionLogEntry = "To: " + Recipient + " " + appDateTime + " " + GetFullErrorMessage(x);

.
.
.

private string GetFullErrorMessage(Exception e)
    {
        string strErrorMessage = "";
        Exception excpCurrentException = e;

        while (excpCurrentException != null)
        {
            strErrorMessage += "\"" + excpCurrentException.Message + "\"";
            excpCurrentException = excpCurrentException.InnerException;
            if (excpCurrentException != null)
            {
                strErrorMessage += "->";
            }
        }

        strErrorMessage = strErrorMessage.Replace("\n", "");

        return strErrorMessage;
    }

根据我的经验,根据您的描述,这与您的 SMTP 端口被 ISP 或您的服务器/网络主机阻止有关。祝你好运!

于 2013-01-22T08:55:54.930 回答