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

What are the process involved in authenticating the mail in ASP?

What are the process involved in authenticating the mail in ASP? Use the below mentioned contents...

How to redirect using Plesk ControlPanel?

Redirect Using Plesk Step 1:Login to plesk control panel. Step 2:Select Mail. Step 3:Select on...

How to reset password for email accounts?

Step 1: Login to your plesk control panel. Step 2: Click Mail Accounts. Step 3: Click the...

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...

How to create or edit the MX windows in plesk windows server

Login to your Plesk using the username and password associated with your domain. In right pane...