我理解这个主题以前已经详细阐述过了,但我已经在互联网上寻找各种解决方案,到目前为止没有任何帮助。
我正在创建一个Web应用程序,它应该在某个时刻向用户提供的电子邮件发送电子邮件。我正试图从我的Gmail帐户发送它。
我尝试了以下内容:
public void test()
{
var client = new SmtpClient("smtp.gmail.com", 587)
{
Credentials = new NetworkCredential("mygmail@gmail.com", "password*"),
EnableSsl = true
};
client.Send("mygmail@gmail.com", "mygmail@gmail.com", "test", "testbody");
Console.WriteLine("Sent");
Console.ReadLine();
}
我收到以下错误:The server response was: 5.5.1 Authentication Required.
在我写的web.config文件中
<system.net>
<mailSettings>
<smtp>
<network host="smtp.google.com" password="" userName=""/>
</smtp>
</mailSettings>
</system.net>
但那没用。我还尝试在web.config中添加password*
和用户名(mygmail@gmail.com
)而不是userName
和密码的空字符串,但我仍然遇到同样的错误。
有人可以帮帮我吗? 谢谢。
答案 0 :(得分:0)
在指定自定义凭据之前,请尝试将UseDefaultCredentials设置为false。 见c# SmtpClient class not able to send email using gmail