Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
IMailSender oMail = new MailSenderClass();
oMail.Host = "localhost"; //SMTP server
oMail.Port = 25; //SMTP port
oMail.AddAddress("address1@domain.com",""); //Mail To:
oMail.From = "your@address.com"; //Mail From:
oMail.FromName = "My Name";
oMail.Subject = "some subject";
oMail.Body = "some message"; //Message Body
oMail.IsHTML = 1; //0 if you want to send mail as Text
//oMail.Queue = 1; //in case you can&want to use queue
try
{
oMail.Send("");
}
catch(Exception Ex)
{
Response.Write("Error: "+Ex.Message+"<br>");
}
finally
{
oMail=null;
}