使用 gmail 发送电子邮件时出错。 SMTP 服务器需要安全连接或客户端未通过身份验证
Error on sending email using gmail. The SMTP server requires a secure connection or the client was not authenticated
这是我的代码。
var smtp = new SmtpClient("smtp.gmail.com", 587)
{
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential("sender@gmail.com","123")
};
try
{
smtp.Send("sender@gmail.com", "receiver@gmail.com", "test", "testbody");
}
catch (SmtpException e)
{
ltrInfo.Text=e.Message;
}
调试代码时出现错误"The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required"
你能告诉我上面的代码有什么问题吗?
一切正常。
这里有 2 种可能的解决方案
进入您的 Gmail 帐户的安全设置并将 "Less secure apps"
的权限设置为已启用。
检查页面顶部是否没有"Suspicious login attempt"
,如果有点击授权访问
看看this
告诉我是否有效。
这是我的代码。
var smtp = new SmtpClient("smtp.gmail.com", 587)
{
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential("sender@gmail.com","123")
};
try
{
smtp.Send("sender@gmail.com", "receiver@gmail.com", "test", "testbody");
}
catch (SmtpException e)
{
ltrInfo.Text=e.Message;
}
调试代码时出现错误"The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required" 你能告诉我上面的代码有什么问题吗?
一切正常。
这里有 2 种可能的解决方案
进入您的 Gmail 帐户的安全设置并将 "Less secure apps"
的权限设置为已启用。
检查页面顶部是否没有"Suspicious login attempt"
,如果有点击授权访问
看看this 告诉我是否有效。