| 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("[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
There are no attachments for this article.
|
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 9990 times since Mon, Jul 17, 2017
Sample Code to Send email using ASP.NET1.1
Viewed 5779 times since Tue, May 1, 2012
How do I query MySQL Database in PHP ?
Viewed 3706 times since Tue, May 1, 2012
I cannot find a way to enable ASP.NET 4.5 on my Control Panel
Viewed 11337 times since Tue, Sep 11, 2012
My website session times out earlier than expected. Why?
Viewed 5292 times since Tue, May 1, 2012
Issue with Storing Session
Viewed 4118 times since Tue, Mar 24, 2015
How To Solve Problem with Connection String on EF (Entity Framework) 4 or above
Viewed 32447 times since Mon, Apr 1, 2013
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 3920 times since Thu, May 3, 2012
How to Solve the error: "405 - HTTP verb used to access this page is not allowed"?
Viewed 5730 times since Wed, Oct 24, 2018
How do I send an email from my ASP.NET website by using SMTP Authentication?
Viewed 6859 times since Tue, May 1, 2012
|
