在更新应用程序后不再起作用之后,我尝试了几项没有帮助的操作 错误:
System.Net.Mail.SmtpException Win32Exception:无法联系本地安全机构
按此处所述更新注册表... https://stackoverflow.com/a/30479567/3925092
我也尝试更改端口,但无济于事。这是以前运行的代码,但更新后没有运行
var smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
Credentials = new NetworkCredential(fromAddress.Address, fromPassword),
Timeout = 20000
};