Home » Categories » Multiple Categories

Sample Code to Send email using ASP.NET 2

The following code is developed in C#:

***************************************

//import the Mail Interface
using System.Net.Mail;

protected void sendMail()
{
     //create the mail message
     MailMessage mail = new MailMessage();
 
     //set the addresses
     mail.From = new MailAddress(txtEmail.Text.Trim());
     mail.To.Add("[email protected]");
 
     //set the content
     mail.Subject = txtSubject.Text.ToString();
     mail.Body = txtQuestion.Text.ToString();
 
     //send the message
     SmtpClient smtp = new SmtpClient("localhost");
     smtp.Credentials = new NetworkCredential("[email protected]", "your_password");
 
     smtp.Send(mail);
}

Please note that you need to use localhost as the SMTP detail as there is no remote connection made between your site and our mail server.
Attachments Attachments
There are no attachments for this article.
Related Articles RSS Feed
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 3778 times since Thu, May 3, 2012
About Azure Key Vault
Viewed 1926 times since Mon, Nov 2, 2020
How do I query MySQL database in ASP.NET?
Viewed 12755 times since Tue, May 1, 2012
How do I query MySQL Database in PHP ?
Viewed 3552 times since Tue, May 1, 2012
How do I send an email from my ASP.NET website by using SMTP Authentication?
Viewed 6698 times since Tue, May 1, 2012
I receive this error message: "Directory Listing Denied. This Virtual Directory does not allow contents to be listed."
Viewed 10803 times since Mon, Apr 30, 2012
My website session times out earlier than expected. Why?
Viewed 5136 times since Tue, May 1, 2012
Do you allow custom COM components?
Viewed 3050 times since Tue, May 1, 2012
How do I redirect a subdomain to a subdirectory?
Viewed 4192 times since Tue, May 1, 2012