คือผมจะเขียนโปรแกรม ส่ง Email อะครับพอลองเขียนแล้วมันส่งไม่ได้ แล้วมี mail เด้งเข้ามาว่ามีการป้องกันการพยายามลงชื่อเข้าใช้ ผมก็กดว่านั้นคือผมเองแล้ว
Code (C#)
private void button1_Click_1(object sender, EventArgs e)
{
MailMessage mail = new MailMessage(textBox1.Text, "[email protected]","ทดสอบ","สวัสดี");
SmtpClient client = new SmtpClient("smtp.gmail.com");
client.Port = 587;
client.Credentials = new System.Net.NetworkCredential(textBox1.Text, textBox2.Text);
client.EnableSsl = true;
client.Send(mail);
MessageBox.Show("ส่งแล้วนะ");
}
พอกดส่งไปเด้งว่า
An unhandled exception of type 'System.Net.Mail.SmtpException' occurred in System.dll
Additional information: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required. Learn more at
The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required. Learn more at