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.
|
My application pool stops working. What is wrong with my site?
Viewed 13255 times since Sun, Feb 15, 2015
How can I enable ASP.NET 3.5 on your Control Panel?
Viewed 3903 times since Wed, May 2, 2012
I cannot see my website. What should I do?
Viewed 3836 times since Thu, May 3, 2012
How To Solve Problem with Connection String on EF (Entity Framework) 4 or above
Viewed 31878 times since Mon, Apr 1, 2013
My website session times out earlier than expected. Why?
Viewed 4982 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 8221 times since Tue, Jun 18, 2013
I receive this error message: "Directory Listing Denied. This Virtual Directory does not allow contents to be listed."
Viewed 10627 times since Mon, Apr 30, 2012
Issue with Storing Session
Viewed 3804 times since Tue, Mar 24, 2015
Do you support ASP.NET MVC 6?
Viewed 4723 times since Wed, Feb 17, 2016
Do you allow custom COM components?
Viewed 2885 times since Tue, May 1, 2012
|