System.Net.Mail.MailMessage myMail = new System.Net.Mail.MailMessage(); System.Net.NetworkCredential Cred = new System.Net.NetworkCredential("[email protected]", "test"); myMail.To.Add("[email protected]"); myMail.Subject = "fhgfhf"; myMail.From = new System.Net.Mail.MailAddress("[email protected]"); myMail.IsBodyHtml = true; // string url = HttpContext.Current.Request.Url.AbsoluteUri; myMail.Body = "dfgdggdfg"; System.Net.Mail.SmtpClient SmtpMail = new System.Net.Mail.SmtpClient("smtp.gmail.com"); SmtpMail.UseDefaultCredentials = true; SmtpMail.EnableSsl = true; SmtpMail.Credentials = Cred; SmtpMail.Port = 587; SmtpMail.Timeout = 50; SmtpMail.Send(myMail); myMail = null;
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง