Home » Categories » Multiple Categories |
Sample Code to Send email using ASP.NET 2 |
Article Number: 82 | Rating: 5/5 from 3 votes | Last Updated: Tue, May 1, 2012 at 11:11 PM
|
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("recipient@recipientAddress.com");
//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("yourAccount@yourDomain.com", "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
![]()
There are no attachments for this article.
|
How can I enable ASP.NET 3.5 on your Control Panel?
Viewed 3823 times since Wed, May 2, 2012
Do you allow custom COM components?
Viewed 2815 times since Tue, May 1, 2012
My application pool stops working. What is wrong with my site?
Viewed 13153 times since Sun, Feb 15, 2015
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 9456 times since Mon, Jul 17, 2017
Why do I suddenly receive the error message: "Compiler Error Message: The compiler failed with error code XXXXXXXXX"?
Viewed 17105 times since Wed, Feb 17, 2016
How To Solve Problem with Connection String on EF (Entity Framework) 4 or above
Viewed 31761 times since Mon, Apr 1, 2013
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 3526 times since Thu, May 3, 2012
I cannot see my website. What should I do?
Viewed 3756 times since Thu, May 3, 2012
How do I query MySQL database in ASP.NET?
Viewed 12497 times since Tue, May 1, 2012
How to solve ReportViewer error message: "An error has occurred during report processing. Input string was not in a correct format"
Viewed 8135 times since Tue, Jun 18, 2013
|