Sending Mail using gmail SMTP from CSharp/.net(从 CSharp/.net 使用 gmail SMTP 发送邮件)
问题描述
using(SmtpClient client = new SmtpClient("smtp.gmail.com", 587))
{
// Configure the client
client.EnableSsl = true;
client.UseDefaultCredentials = false;
client.Credentials = new NetworkCredential(textBox1.Text, textBox3.Text);
client.DeliveryMethod = SmtpDeliveryMethod.Network;
MailMessage message = new MailMessage(
textBox1.Text, // From field
textBox2.Text, // Recipient field
textBox4.Text, // Subject of the email message
richTextBox1.Text // Email message body
);
client.Send(message);
MessageBox.Show("Email has been sent.");
}
错误:SMTP 服务器需要安全连接或客户端未通过身份验证.服务器响应为:5.5.1 Authentication Required.
我在使用 gmail 时遇到了这个错误,但我可以使用其他 SMTP 服务器来发送邮件.凭据正确.
I have been getting this error with gmail but am able to use other SMTP Servers to send mails. The credentials are correct.
推荐答案
Gmail 帐户似乎存在安全问题.
Looks like there is a security issue with Gmail account.
我也遇到了同样的问题,然后从 这篇文章.
I have also faced that same issue and then found solution from this post.
帖子提到您需要在启用访问不太安全的应用程序"的情况下更改帐户权限设置.
The post mentioned that you need to change the Account Permission setting with "Access of Less secure App" Enabled.
事实上,当您登录到您的 gmail 帐户时,您会收到通知.
In fact you will get notification when you logged in to your gmail account.
这篇关于从 CSharp/.net 使用 gmail SMTP 发送邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 CSharp/.net 使用 gmail SMTP 发送邮件
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 输入按键事件处理程序 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04