我正在尝试在我的应用程序中实现SMTP。 该代码应该可以,但是不能。用户和通行证有效,并且仅用于测试目的。
我已经尝试了一切。将端口设置为25,465设置为全部。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net;
using System.Net.Mail;
namespace Email
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Label2_Click(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void Button1_Click(object sender, EventArgs e)
{
var smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential("test1020dassf5@gmail.com", "KDO30VMjkd03JM0j")
};
MailMessage msg = new MailMessage("test1020dassf5@gmail.com", "test1020dassf5@gmail.com", textBox1.Text, textBox2.Text);
{
smtp.Send(msg);
}
}
}
}
它给了我错误:
System.Net.Mail.SmtpException:SMTP服务器需要安全连接,或者客户端未通过身份验证。服务器响应为:5.5.1需要身份验证。了解更多 在System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode,字符串响应) 在System.Net.Mail.MailCommand.Send(SmtpConnection conn,Byte []命令,MailAddress来自,布尔值allowUnicode) 在System.Net.Mail.SmtpTransport.SendMail(MailAddress发件人,MailAddressCollection收件人,字符串deliveryNotify,布尔值allowUnicode,SmtpFailedRecipientException&异常) 在System.Net.Mail.SmtpClient.Send(MailMessage消息)