作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用来自 SendGrid 的免费 SMTP 中继从我的 ASP.NET 应用程序发送电子邮件。我可以连接到服务器,但是当我尝试进行身份验证时,出现此错误:“SMTP 服务器意外断开连接。”
using (var client = new SmtpClient())
{
client.ServerCertificateValidationCallback =
(sender, certificate, certChainType, errors) => true;
client.AuthenticationMechanisms.Remove("XOAUTH2");
// connection
client.Connect("smtp.host", 465, true);
client.Authenticate("UserName", "Password");//error occurs here
client.Send(email);
client.Disconnect(true);
}
再一次,我可以毫无问题地连接,但是当我尝试进行身份验证时,出现了前面提到的错误...
有什么建议吗?
干杯
最佳答案
关于c# - 使用 Mailkit : "The SMTP server has unexpectedly disconnected.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57676716/
我是一名优秀的程序员,十分优秀!