|
|
|
สอบถามเกียวกับคำสั่งการส่งเมล์ NetworkCredential Cred = new NetworkCredential("[email protected]", "xxxxxxxxxxxxxxxx"); |
|
|
|
|
|
|
|
ใช้ Mail ของอะไรก็ใช้อันนั้นแหละครับ เป็นพวก SMTP Account
|
|
|
|
|
Date :
2013-11-08 15:19:01 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้ gmail ก็ใส่ User กับ Password เดียวกับที่ผมเข้าไปอ่านเมล์เลยใช่ไหมครับ
|
|
|
|
|
Date :
2013-11-08 15:24:18 |
By :
Agility |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ครับ
|
|
|
|
|
Date :
2013-11-08 15:25:30 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่างครับ
Code (C#)
static void Main(string[] args)
{
var client = new SmtpClient("smtp.gmail.com", 587)
{
Credentials = new NetworkCredential("[email protected]", "mypwd"),
EnableSsl = true
};
client.Send("[email protected]", "[email protected]", "test", "testbody");
Console.WriteLine("Sent");
Console.ReadLine();
}
อีกตัว
Code (C#)
MailMessage mail = new MailMessage();
mail.To.Add("[email protected]");
mail.From = new MailAddress("[email protected]");
mail.Subject = "Test Email";
string Body = "<b>Welcome to CodeDigest.Com!!</b>";
mail.Body = Body;
mail.IsBodyHtml = true;
SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.Credentials = new System.Net.NetworkCredential("[email protected]", "myPass");
smtp.EnableSsl = true;
smtp.Send(mail);
|
|
|
|
|
Date :
2013-11-08 15:29:51 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เคยเขียนไว้เหมือนกัน
Code (C#)
System.Net.Mail.MailMessage myMail = new System.Net.Mail.MailMessage();
System.Net.NetworkCredential Cred = new System.Net.NetworkCredential("[email protected]", "password");
myMail.To.Add("[email protected]");
myMail.Subject = "Test send mail message";
myMail.From = new System.Net.Mail.MailAddress("[email protected]");
myMail.IsBodyHtml = true;
myMail.Body = "Hi Sawatdee.<br><br>Sabye dee mai.";
System.Net.Mail.SmtpClient SmtpMail = new System.Net.Mail.SmtpClient("smtp.gmail.com");
SmtpMail.UseDefaultCredentials = false;
SmtpMail.EnableSsl = true;
SmtpMail.Credentials = Cred;
SmtpMail.Port = 465;
SmtpMail.Send(myMail);
myMail = null;
(C#) ASP.NET Send Email SMTP Gmail Account
|
|
|
|
|
Date :
2013-11-08 15:30:42 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมสงสัยครับ ถ้าผมต้องการให้พนักงานใช้โปรแกรมส่งเมล์ตัวนี้ ผมต้องรู้ ชื่อเมล์ และ รหัสเมล์ ของทุกคนเลยใช่ไหม ผมไม่ทราบว่าเครื่อง Server มันมีส่วนกลางไหม แบบว่าใครส่งก็ได้ไม่จำเป็นต้องใส่เมล์กับรหัสตัวเองเพราะเมล์ตัวเองจะไปอยู่ที่ mail.From
NetworkCredential Cred = new NetworkCredential(email ผู้ส่ง, password email ผู้ส่ง);
|
|
|
|
|
Date :
2013-11-08 15:39:53 |
By :
Agility |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าจำเป็นต้แงใช้ mail ใคร mail มันก็ทำ textbox ให้ใส่ mail กับ pass
ถ้าไม่จำเป็นก็ create mail กลางขึ้นมาซักอัน
|
|
|
|
|
Date :
2013-11-08 16:10:34 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-11-08 16:37:15 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|