在VS 2017上进行更新后,我遇到了net.mail(gmail)System.Net.Mail.SmtpException问题:

时间:2019-02-07 20:41:53

标签: c# wpf

在更新应用程序后不再起作用之后,我尝试了几项没有帮助的操作 错误:

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
        };

0 个答案:

没有答案