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
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 10430 times since Tue, Apr 2, 2013
I cannot see my website. What should I do?
Viewed 4404 times since Thu, May 3, 2012
About Azure Key Vault
Viewed 2544 times since Mon, Nov 2, 2020
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 3497 times since Tue, May 1, 2012