How to send e-mail from an ASP.NET application?

Answer Posted / mahesh swami

<appSettings>
<add key="SMTPUserName" value="abcxyzabc4u@gmail.com" />
<add key="SMTPPassword" value="pnagajsuma" />
</appSettings>



using System.Configuration;
using System.Net.Mail;
using System.Text;
using System.Net;



protected void SendAcknowledgementMail()
{
MailMessage oMailMessage = new MailMessage();
NetworkCredential oCredentials = new
NetworkCredential(ConfigurationManager.AppSettings["SMTPUserName"].ToString(),
ConfigurationManager.AppSettings["SMTPPassword"].ToString());

oMailMessage.To.Add(txtEmailAddress.Text);
oMailMessage.Subject = "Testing";
oMailMessage.From = new
MailAddress(ConfigurationManager.AppSettings["SMTPUserName"].ToString());
oMailMessage.Body = "Hi this is a sample testing
mail. Pls ignore this.";
oMailMessage.IsBodyHtml = false;

SmtpClient oSmtpClient = new
SmtpClient("smtp.gmail.com");
oSmtpClient.UseDefaultCredentials = false;
oSmtpClient.EnableSsl = true;
oSmtpClient.Credentials = oCredentials;
oSmtpClient.Port = 587;
if (!string.IsNullOrEmpty(oMailMessage.Subject))
{
oSmtpClient.Send(oMailMessage);
}
}




protected void btnsend_Click(object sender, EventArgs e)
{
SendAcknowledgementMail();
}

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Code for Communicating over Sockets?

1946


how to track links visited in google using iframes

2280


how to create a search bar which access data from various websites and retrieves the data

2551


ArrayList declaration in .net

2745


Code for Presenting Parent/Child Data in a Data Grid Row?

2109






Code for Document Validation in XML.NET?

1984


Coding for .NET Delegates?

2093


Coding for Synchronizing Cache Access in ASP.NET?

3120


Code for Creating a Form Using PlaceHolder Controls?

2345


How we use ajax in asp.net through javaScript. Please givee me an example.

2503


What is the code of Password Recovery or Forget your password? Plz tell in c # language.

3568


Common UI for Multiple web applications. Suppose there are 35 websites using same third party controls.These 3rd party controls are made together that all 35 websites can use these controls.If we put all 3rd party controls and use its dll in 35 websites,only class files will be accessable. But I want to use CSS,images also in all 35 websites. how I can design the N-tier solution for this project.

2250


How to get Dynamically Linked Comboboxes Set?

2027


How to use Client-side Script to Focus Controls in ASP.NET?

2360


i have a gird with columns all are coming from database,this will bind in item templete in gridview as textboxex.and i have button below named Update.i want to update all the records in the grid,but if user change the value of one textbox,what is the easy way 2 do this

2143