| 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.
|
Why do I suddenly receive the error message: "Compiler Error Message: The compiler failed with error code XXXXXXXXX"?
Viewed 17654 times since Wed, Feb 17, 2016
Issue with Storing Session
Viewed 3984 times since Tue, Mar 24, 2015
How do I query MySQL database in ASP.NET?
Viewed 12806 times since Tue, May 1, 2012
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 9706 times since Tue, Apr 2, 2013
My application pool stops working. What is wrong with my site?
Viewed 13496 times since Sun, Feb 15, 2015
About Azure Key Vault
Viewed 1990 times since Mon, Nov 2, 2020
I cannot see my website. What should I do?
Viewed 4016 times since Thu, May 3, 2012
How to Deploy and host .Net Core 2 and Angular 6 app
Viewed 13472 times since Tue, Oct 23, 2018
I cannot find a way to enable ASP.NET 4.5 on my Control Panel
Viewed 11212 times since Tue, Sep 11, 2012
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 9831 times since Mon, Jul 17, 2017
|
