Windows防火墙已关闭,网络防火墙未阻止出站端口。
我还应该寻找什么?
Win2k8上的IIS 7,使用ASP.NET w / C#
SmtpClient smtpClient = new SmtpClient();
smtpClient.EnableSsl = true;
smtpClient.Send(fromAddress, toAddress, subject, body);
答案 0 :(得分:0)
将smtpClient.Send(fromAddress, toAddress, subject, body);
包装在try catch语句中,并查看异常是什么
答案 1 :(得分:0)
Gmail requires authentication,因此您需要在SmtpClient
个实例上填写Credentials
属性,如图所示here。
这并不能解释为什么它可以从您的开发框中工作(除非POP3方法仍然有效),但它可以解释为什么您显示的代码不起作用。