<%@ Import Namespace="System.Web.Mail"%> <%@ Page Language="C#" Debug="true" %> <script runat="server"> void Page_Load(object sender,EventArgs e) { MailMessage myMail = new MailMessage(); myMail.To = "[email protected]"; myMail.From = "[email protected]"; myMail.Subject = "My Subject"; myMail.BodyFormat = MailFormat.Text; myMail.Body = "My Body & Description"; myMail.Priority = MailPriority.High; //*** Low,High ***// SmtpMail.Send(myMail); myMail = null; this.lblText.Text = "Mail Sending."; } </script> <html> <head> <title>ThaiCreate.Com ASP.NET - Send Mail</title> </head> <body> <form id="form1" runat="server"> <asp:Label id="lblText" runat="server"></asp:Label> </form> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท