Send Email in Asp.net
Write complete program of Asp.net Through which you can send email on gmail account.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rewant ChoudharyPosted Sep 15, 2012, 6:39 AM
mail.Bcc.Add("[email protected]");
mail.From = new MailAddress("[email protected]", "WebAccouting");
mail.Subject = "Feedback...!!!";
mail.Body = "body";
SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com"; //Or Your SMTP Server Address
smtp.Credentials = new System.Net.NetworkCredential("GmailID", "password");
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.Send(mail);
Pradip PandeyPosted Sep 13, 2012, 11:05 PM
http://www.c-sharpcorner.com/uploadfile/prathore/sending-email-in-Asp-Net-2-0/
http://www.c-sharpcorner.com/uploadfile/anjudidi/email-sending-in-Asp-Net-2-0/
Hope it will help.
Sukesh MarlaPosted Sep 13, 2012, 2:38 PM
http://www.codeproject.com/Articles/12511/Send-Email-in-ASP-Net-2-0-Feed-back-Form
Check this is correct answer if it helped.