Click here to Skip to main content
15,881,803 members
Articles / Web Development / ASP.NET
Article

Send Email in ASP.Net 2.0 - Feed back Form

Rate me:
Please Sign up or sign in to vote.
3.53/5 (65 votes)
1 Jan 2006 693.7K   24.2K   87   118
This article explains how to send email using System.Net.Mail.SmtpClient in ASP.Net 2.0. with an example of Feedback form.

Sample Image - EmailApplication.jpeg

Introduction

We are using System.Web.Mail.SmtpMail to send email in dotnet 1.1 which is obsolete in 2.0. The System.Net.Mail.SmtpClient Class will provide us the same feature as that of its predecessor.

This article explains how to use System.Net.Mail namespace to send emails.

Using the code

The HTML Design contains provision to enter sender’s name, email id and his comments. On click of the send email button the details will be sent to the specified email (Admin).

The Send mail functionality is similar to Dotnet 1.1 except for few changes

  1. System.Net.Mail.SmtpClient is used instead of System.Web.Mail.SmtpMail (obsolete in Dotnet 2.0).
  2. System.Net.MailMessage Class is used instead of System.Web.Mail.MailMessage (obsolete in Dotnet 2.0)
  3. The System.Net.MailMessage class collects From address as MailAddress object.
  4. The System.Net.MailMessage class collects To, CC, Bcc addresses as MailAddressCollection.
  5. MailMessage Body Format is replaced by IsBodyHtml

The Code is Self explanatory by itself.

protected void btnSendmail_Click(object sender, EventArgs e)
{
  // System.Web.Mail.SmtpMail.SmtpServer is obsolete in 2.0
  // System.Net.Mail.SmtpClient is the alternate class for this in 2.0
  SmtpClient smtpClient = new SmtpClient();
  MailMessage message = new MailMessage();

  try
  {
      MailAddress fromAddress = new MailAddress(txtEmail.Text, txtName.Text);

      // You can specify the host name or ipaddress of your server
      // Default in IIS will be localhost
      smtpClient.Host = "localhost";

      //Default port will be 25
      smtpClient.Port = 25;

      //From address will be given as a MailAddress Object
      message.From = fromAddress;

      // To address collection of MailAddress
      message.To.Add("admin1@yoursite.com");
      message.Subject = "Feedback";

      // CC and BCC optional
      // MailAddressCollection class is used to send the email to various users
      // You can specify Address as new MailAddress("admin1@yoursite.com")
      message.CC.Add("admin1@yoursite.com");
      message.CC.Add("admin2@yoursite.com");

      // You can specify Address directly as string
      message.Bcc.Add(new MailAddress("admin3@yoursite.com"));
      message.Bcc.Add(new MailAddress("admin4@yoursite.com"));

      //Body can be Html or text format
      //Specify true if it  is html message
      message.IsBodyHtml = false;

      // Message body content
      message.Body = txtMessage.Text;

      // Send SMTP mail
      smtpClient.Send(message);

      lblStatus.Text = "Email successfully sent.";
  }
  catch (Exception ex)
  {
      lblStatus.Text = "Send Email Failed." + ex.Message;
  }
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow to send reply mail to client Pin
Sumit_Rj19-Sep-15 2:34
Sumit_Rj19-Sep-15 2:34 
QuestionMail Sending Code error Pin
Member 1047274317-Dec-13 8:23
Member 1047274317-Dec-13 8:23 
QuestionERROR Pin
Ahsan Aftab22-Sep-13 23:58
Ahsan Aftab22-Sep-13 23:58 
AnswerRe: ERROR Pin
Member 108635769-Mar-15 23:02
Member 108635769-Mar-15 23:02 
GeneralMy vote of 5 Pin
Vedangi25-Feb-13 20:53
Vedangi25-Feb-13 20:53 
QuestionOn sending messages Pin
Bhuchetana1-Feb-13 5:05
Bhuchetana1-Feb-13 5:05 
GeneralMy vote of 5 Pin
aacchee18-Jan-13 16:39
aacchee18-Jan-13 16:39 
GeneralMy vote of 5 Pin
Betty.888-Jan-13 22:01
Betty.888-Jan-13 22:01 
GeneralThanks Pin
rasikatharanga6-Dec-12 20:33
rasikatharanga6-Dec-12 20:33 
QuestionError While Sending Email Pin
Rahul.khurana31-Oct-12 1:21
Rahul.khurana31-Oct-12 1:21 
Questionhow to post html data to .aspx file and save data Pin
gunanithi28-Aug-12 19:07
gunanithi28-Aug-12 19:07 
GeneralMy vote of 5 Pin
visha vilas kulkarni3-Jul-12 21:05
visha vilas kulkarni3-Jul-12 21:05 
Questionsend email from asp.net Pin
Member 889955628-Apr-12 7:45
Member 889955628-Apr-12 7:45 
QuestionFeedback form Pin
Abhay .S. Patil22-Mar-12 20:50
Abhay .S. Patil22-Mar-12 20:50 
QuestionFeedback Pin
siddhesh.shinde1916-Feb-12 3:53
siddhesh.shinde1916-Feb-12 3:53 
AnswerRe: Feedback Pin
shobhit_7-Mar-12 19:40
shobhit_7-Mar-12 19:40 
AnswerRe: Feedback Pin
Andrew G Avelin4-Jun-12 20:28
Andrew G Avelin4-Jun-12 20:28 
QuestionSending Mail in ASP.Net Pin
Kamal Sukla14-Nov-11 22:00
Kamal Sukla14-Nov-11 22:00 
Generalnot working Pin
mahendra0728-Nov-11 21:09
mahendra0728-Nov-11 21:09 
GeneralMy vote of 1 Pin
yograjchaple3-Sep-11 0:37
yograjchaple3-Sep-11 0:37 
Questionsending mail error Pin
princeJasper1-Jul-11 23:58
princeJasper1-Jul-11 23:58 
QuestionError ! Pin
razieh_mohammadi25-Jun-11 4:30
razieh_mohammadi25-Jun-11 4:30 
Generalnice Pin
sneha_sharma12-May-11 0:00
sneha_sharma12-May-11 0:00 
GeneralMy vote of 3 Pin
ali5318-May-11 21:10
ali5318-May-11 21:10 
GeneralC# Code for sending email in ASP.NET Pin
michaelmeyer8-Mar-11 22:43
michaelmeyer8-Mar-11 22:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.