IW1QLH

  • Increase font size
  • Default font size
  • Decrease font size

Send a email

E-mail Print PDF
ASPX.CS C# - How to send a email

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);
    }