| 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 Problem with Connection String on EF (Entity Framework) 4 or above
Viewed 32251 times since Mon, Apr 1, 2013
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 3161 times since Tue, May 1, 2012
My website session times out earlier than expected. Why?
Viewed 5210 times since Tue, May 1, 2012
Domain Name Server (DNS) Amplification Attack
Viewed 9735 times since Wed, Oct 15, 2014
How to Solve the error: "405 - HTTP verb used to access this page is not allowed"?
Viewed 5615 times since Wed, Oct 24, 2018
I receive this error message: "Directory Listing Denied. This Virtual Directory does not allow contents to be listed."
Viewed 10906 times since Mon, Apr 30, 2012
How do I query MySQL database in ASP.NET?
Viewed 12829 times since Tue, May 1, 2012
Do you allow custom COM components?
Viewed 3117 times since Tue, May 1, 2012
How to Deploy and host .Net Core 2 and Angular 6 app
Viewed 13524 times since Tue, Oct 23, 2018
How do I query MySQL Database in PHP ?
Viewed 3624 times since Tue, May 1, 2012
|
