我正在尝试使用来自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);
}
再次,我可以毫无问题地进行连接,但是当我尝试进行身份验证时,出现了前面提到的错误...
有什么建议吗?
欢呼