Howto Send E-mail from an ASPX Page
NOTE: the concepts presented in this article are now considered obsolete possibly because better alternatives are available.
Prerequisites
This article (and many others on this site) assumes the following prerequisites:- Visual Studio .NET 2002 or 2003
- The .NET Framework 1.0 or 1.1
Please note: this article was written against .NET 1.x; many years ago. For a .NET 2.0 or later solution, check out www.systemnetmail.com/.
Sending e-mail
To send an E-mail from an ASPX page, you'll need to use the System.Web.Mail namespace that contains the MailMessage and SmtpMail classes. The MailMessage class represent the actual message and the SmtpMail class is used to send the message to one or more recipients.Let's take a look at the code of a simple example to see how it works. We'll start with the ASPX file, called SendMail.aspx:
<%@ Page language="c#" Codebehind="SendMail.aspx.cs"
AutoEventWireup="false" Inherits="Demos.Email.SendMail" %>
<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<html>
<head>
<title>Send an E-mail with ASP.NET</title>
</head>
<body>
<form id="frmSendEmail" method="post" runat="server">
Your name: <asp:textbox id="txtName" runat="server"></asp:textbox><br>
Your message: <asp:textbox id="txtMessage"
runat="server"textmode="MultiLine"></asp:textbox><br>
<asp:button id="btnSubmit" runat="server"
text="Send E-mail"></asp:button>
<asp:label id="lblErrorMessage" runat="server"
visible="False"></asp:label>
</form>
</body>
</html>
The important bits of this example can be found in the Code Behind file for this page, SendMail.aspx.cs:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Web.Mail; namespace Demos.Email
{
/// <summary>
/// Simple demo class that sends an e-mail
/// </summary>
public class SendMail : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox txtName;
protected System.Web.UI.WebControls.Label lblErrorMessage;
protected System.Web.UI.WebControls.TextBox txtMessage;
private void Page_Load(object sender, System.EventArgs e)
{
if (IsPostBack)
{
string name = txtName.Text;
string message = txtMessage.Text;
if(name.Length == 0 || message.Length ==0)
{
lblErrorMessage.Text = "Please type your name and a message";
lblErrorMessage.Visible = true;
}
else
{
message = "This e-mail was sent by " + name + "\r\n" + message;
MailMessage objMail = new MailMessage();
objMail.From = "Your From Name <You@YourProvider.com>";
objMail.To = "Your To Name <You@YourProvider.com>";
objMail.Subject = "Response from website";
objMail.Body = message;
SmtpMail.SmtpServer = "smtp.YourProvider.com";
SmtpMail.Send(objMail);
Response.Redirect("ThankYou.aspx");
}
}
} #region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
Required Namespaces
Download Files
Where to Next?
Wonder where to go next? You can post a comment on this article.
Links in this Document
Doc ID | 121 |
Full URL | https://imar.spaanjaars.com/121/howto-send-e-mail-from-an-aspx-page |
Short cut | https://imar.spaanjaars.com/121/ |
Written by | Imar Spaanjaars |
Date Posted | 09/22/2003 17:15 |
Date Last Reviewed | 12/08/2006 15:01 |
Comments
Talk Back! Comment on Imar.Spaanjaars.Com
I am interested in what you have to say about this article. Feel free to post any comments, remarks or questions you may have about this article. The Talk Back feature is not meant for technical questions that are not directly related to this article. So, a post like "Hey, can you tell me how I can upload files to a MySQL database in PHP?" is likely to be removed. Also spam and unrealistic job offers will be deleted immediately.
When you post a comment, you have to provide your name and the comment. Your e-mail address is optional and you only need to provide it if you want me to contact you. It will not be displayed along with your comment. I got sick and tired of the comment spam I was receiving, so I have protected this page with a simple calculation exercise. This means that if you want to leave a comment, you'll need to complete the calculation before you hit the Post Comment button.
If you want to object to a comment made by another visitor, be sure to contact me and I'll look into it ASAP. Don't forget to mention the page link, or the Doc ID of the document.