01.
using System.Net;
02.
using System.Net.Mail;
03.
//------------------
04.
MailMessage mail = new MailMessage();
05.
mail.
To
.Add(
"ผู้รับ@mail.com"
);
06.
mail.From = new MailAddress(
"ผู้ส่ง@gmail.com"
);
07.
mail.Subject =
"หัวข้อส่ง"
;
08.
mail.Body =
"Body"
;
09.
mail.IsBodyHtml = true;
10.
SmtpClient smtp = new SmtpClient();
11.
smtp.Host =
"smtp.gmail.com"
; //
Or
Your SMTP Server Address
12.
smtp.Credentials = new System.Net.NetworkCredential(
"ผู้ส่ง@gmail.com"
,
"รหัสผ่าน"
);
13.
smtp.Port = 587; // 587 for gmail (port จะขึ้นอยู่กับว่าเมลผุ้ส่งเป็นของอะไร 587 เป็นของ gmail ค่ายอื่นลองหาตามเน็ตคับ)
14.
smtp.EnableSsl = true;
15.
smtp.Send(mail);
16.
smtp.Dispose();
17.
mail.Dispose();