How to mail using ASP.NET?

You can create a mail form in asp.net.

1. Create a html form which will get the values from the user.

For Example:
<form method="POST" action="test.aspx">

To <input type="text" name="To">

From <input type="text" name="From">

Subject <input type="text" name="Subject">

Body <textarea name="Body" rows="5" cols="20" wrap="physical">

2. Add the following code into the file test.aspx.

<% @Page Language="C#" %>
<% @Import Namespace="System.Web.Mail" %>
<%
string strTo = "test@test.com";
string strFrom = "test@dnswind.com";
string strSubject = "Hi Test";

SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(strFrom, strTo, strSubject, "A real nice body text here");

Response.Write("Email was queued to disk");
%>

Was this answer helpful?

 Print this Article

Also Read

How to setup a access database in plesk?

Access database (mdb) in Plesk - How to setup a access database in plesk Upload the mdb file in...

We are receiving the error Secure Connection Failed while opening https? What is the problem?

Security Certificates: Secure Connection Failed : Firefox uses certificates on secure websites...

How to create Database and user to the Database in Plesk?

Create Database You can create database using the following steps. Step 1: Login to the Plesk....

How to access the MSSQL 2008 database using Remote Database Connectivity?

How to access the MSSQL database using Remote Database Connectivity? Follow the below to access...

How to upload files in windows server

You can upload the files using either FTP softwares or by File Manager in cpanel. Option 1: For...