简介:我支持在成功注册到站点后发送欢迎/确认邮件的一段代码。
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();
}
记录的错误只是向提供的电子邮件地址发送邮件时发生超时。