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 发送邮件
基础教程推荐
- SSE 浮点算术是否可重现? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01