using System.Net.Mail;
protected void ...
{
MailMessage mail = new MailMessage(" This e-mail address is being protected from spambots. You need JavaScript enabled to view it ", " This e-mail address is being protected from spambots. You need JavaScript enabled to view it ",
"Subject", "Hello world!");
SmtpClient smtp = new SmtpClient("smtp.iw1qlh.net");
smtp.Send(mail);
}
| < Prev | Next > |
|---|





