Example code for sending emails in .Net using C#:
//Send email
try
{
MailMessage message = new MailMessage();
message.From = new MailAddress(localizedContent.SendPasswordFromEmailAddress);
MailAddressCollection toAddresses = message.To;
toAddresses.Add(new MailAddress(_userInfo.Email));
message.Subject = localizedContent.SendPasswordEmailSubject;
message.Priority = MailPriority.Normal;
message.BodyEncoding = Encoding.UTF8;
message.Body = template;
message.IsBodyHtml = true;
SmtpClient smtp = new SmtpClient(AppConfiguration.SmtpServer);
smtp.Send(message);
return true;
}
catch (Exception ex)
{
return false;
}
Published by