我有一个程序,我想在服务器上运行,该服务器能够监控网络上的各种服务器,并在涉及这些服务器的某些情况发生时发送电子邮件通知。
目前,我可以在本地计算机上运行此程序,并启动电子邮件(使用gmail SMTP)。但是,当我尝试通过命令提示符在服务器上运行它时,它会抛出以下异常:
Unhandled Exception: System.Net.Mail.SmtpException: Failure sending mail. --->
System.Net.WebException: Unable to connect to the remote server --->
System.Net.Sockets.SocketException: A connection attempt failed
because the connected party did not properly respond after a period of time,
or established connection failed because connected host has failed to respond
xxx.xxx.xxx.xxx:587
与发送电子邮件相关的代码非常简单:
static void sendEmail(MailAddressCollection mailCollection, string emailSender,
string emailDisplayName, string emailPassword,
string subject, string body) {
MailAddress fromAddress = new MailAddress(emailSender, emailDisplayName);
SmtpClient smtpClient = new SmtpClient {
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(fromAddress.Address, emailPassword)
};
MailMessage message = new MailMessage {
From = fromAddress,
Subject = subject,
Body = body
};
foreach (MailAddress mailAddress in mailCollection) {
message.To.Add(mailAddress);
}
smtpClient.Send(message);
}
有问题的服务器是2008R2的盒子,它没有启用Windows防火墙。此外,端口25肯定是开放的,因为此服务器可以发送其他类型的电子邮件(特别是由Dynamics CRM电子邮件路由器生成的电子邮件)。
可能导致此错误的原因是什么?
答案 0 :(得分:0)
该问题与Gmail阻止尝试发送电子邮件的服务器的IP地址有关。
尝试使用Gmail帐户发送电子邮件时,首先尝试使用浏览器在该特定IP地址的计算机上手动登录Gmail。我最终必须这样做,并经历验证从我的服务器发送电子邮件(以编程方式生成)是合法的过程。如果您没有像我一样完成此过程,则Gmail可以假定您的服务器不是合法的电子邮件发件人,并且可以继续假设您的IP地址中的所有流量都无效 - 直到您正式验证上述IP地址为止。