Sending Email - ASP.NET 2
public static bool SendEmail( string from,string displayName,string subject, string[] to, string body )
{
try
{
System.Net.Mail.MailMessage mail = new System.Net.Mail.MailMessage();
mail.Body = body;
mail.IsBodyHtml = true;
mail.From = new...