المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Sending email in ASP.NET 2.0



BarakaSoft
03-26-2009, 12:59 AM
Sending email in ASP.NET 2.0



Introduction:

The System.Net.Mail namespace in ASP.NET 2.0 has replaced the System.Web.Mail namespace in ASP.NET 1.x. In ASP.NET 2.0, you should know that the method of sending emails has changed slightly. Follow Brad Kingsley as he sends his first email from an ASP.NET 2.0 application.

Changes to send message in ASP.NET 20 and its previous version


System.Net.Mail.SmtpClient is used instead of System.Web.Mail.SmtpMail.



System.Net.MailMessage Class is used instead of System.Web.Mail.MailMessage.



The System.Net.MailMessage class collects from address as MailAddress object.



The System.Net.MailMessage class collects To, CC, Bcc addresses as MailAddressCollection.



MailMessage Body Format is replaced by IsBodyHtml.


In the given example the form contains five textboxes:


First textbox is used for recipient's email address.



Second textbox is used for sender's email address.



Third textbox is used for subject of the email.



Fourth textbox is used for the body of the email.



Fifth textbox is used for the list status (it provide the message that mail has sent or not).


One button is used for sending the email. So we write the code on the button's click event.

We add the System.Net.Mail namespace for sending the email.

For Example:Through this example you can understand how to send the email in ASP.NET 2.0.

These are the following steps to help you to send email in ASP.NET 2.0.

Step 1: Open your new website.

Step 2: Design the page.

Step 3: Now add the System.Net.Mail namespace.

Step 4: Write the cs code on the button's click event.

Default.aspx:

<%@ Page ********="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

<title>Email sending</title>

</head>

<body>

<form id="form1" runat="server">

<div>

<table cellpadding="10" cellspacing="0" border="2" width="40%" height="100px">

<tr>

<td valign="top" style="padding-top:20px; background-color: #ffccff;">

<asp:Label ID="Label1" runat="server" Text="To " ForeColor="Purple"> </asp:Label> &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;

<asp:TextBox ID="T1" runat="server" BackColor="#C0FFFF"></asp:TextBox>

<br /><br />

<asp:Label ID="Label2" runat="server" Text="From" ForeColor="Purple"> </asp:Label>&nbsp; &nbsp;

<asp:TextBox ID="T2" runat="server" BackColor="#C0FFFF"></asp:TextBox><br /><br />

<asp:Label ID="Label3" runat="server" Text="Subject" ForeColor="Purple"></asp:Label>

<asp:TextBox ID="T3" runat="server" BackColor="#C0FFFF"></asp:TextBox><br /><br />

<asp:Label ID="Label4" runat="server" Text="Body" ForeColor="Purple"></asp:Label>&nbsp; &nbsp;

<asp:TextBox ID="T4" runat="server" Height="100px" Width="200px" BackColor="#C0FFFF" ForeColor="Black"></asp:TextBox><br /><br />

<asp:Label ID="Label5" runat="server" Text="List Status" ForeColor="Purple"></asp:Label>

<asp:TextBox ID="T5" runat="server" BackColor="#C0FFFF" ForeColor="Red"></asp:TextBox><br/><br />

<asp:Button ID="Send" runat="server" Text="Send" OnClick="Send_Click" BackColor="#C0C000" ForeColor="Navy" />

</td>

</tr>

</table></div>

</form>

</body>

</html>

Design view of the above page is as follows:

http://lh4.ggpht.com/_iuwZHhydmEs/SbqQMUXw-jI/AAAAAAAAAKY/h4NuV3c3E0M/clip_image001_thumb.jpg?imgmax=800 (http://lh5.ggpht.com/_iuwZHhydmEs/SbqQK6xrwxI/AAAAAAAAAKU/fbyg3n6W3LI/s1600-h/clip_image001%5B3%5D.jpg)

Figure 1: Design of the form.

Default.aspx.cs:

using System;

using System.Data;

using System.Configuration;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

using System.Net.Mail;

public partial class _Default : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{}

protected void Send_Click(object sender, EventArgs e)

{

SmtpClient smtpclient = new SmtpClient();

MailMessage message = new MailMessage();

smtpclientl.Host = "localhost";

try

{

MailAddress SendFrom = new MailAddress(T1.Text);

MailAddress SendTo = new MailAddress(T2.Text);

MailMessage MyMessage = new MailMessage(SendFrom, SendTo);

MyMessage.Subject = T3.Text;

MyMessage.Body =T4.Text;

T5.Text = "Message Sent";

}

catch (Exception ex)

{

T5.Text = ex.ToString();

}

}

}

Output:The following page will display when you debug this code. And you should fill the given entries in the form.

http://lh4.ggpht.com/_iuwZHhydmEs/SbqQP7H6yNI/AAAAAAAAAKg/v3vqPhR9los/clip_image002_thumb.jpg?imgmax=800 (http://lh5.ggpht.com/_iuwZHhydmEs/SbqQN7vzx1I/AAAAAAAAAKc/hlx68r2NW7M/s1600-h/clip_image002%5B3%5D.jpg)

Figure 2: After debug the code this page will open.

After filling all entries click on send button then you will see the following output.

http://lh5.ggpht.com/_iuwZHhydmEs/SbqQS07jrgI/AAAAAAAAAKo/pI4Mvbc9a8E/clip_image003_thumb.jpg?imgmax=800 (http://lh4.ggpht.com/_iuwZHhydmEs/SbqQRg-7D6I/AAAAAAAAAKk/51dF-eNd6to/s1600-h/clip_image003%5B3%5D.jpg)

Figure 3: This figure represents the final output.

List status gives the information about the sending message.