Send Email in asp.net
add System.Net.Mail; namespace ///********************************************************************************* /// ///To Send the simple Email /// /// From Email Id /// To Email Id /// Email Subject /// Email Body /// Returns bool with Indication ///********************************************************************************* public bool SendEMail(string FromAddressId, string ToAddressId, string Subject, string MessageBody) { SmtpClient objSmtpClient = new SmtpClient(); MailMessage message = new MailMessage(); ...