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 13198 times since Sun, Feb 15, 2015
Domain Name Server (DNS) Amplification Attack
Viewed 9459 times since Wed, Oct 15, 2014
Issue with Storing Session
Viewed 3762 times since Tue, Mar 24, 2015
Why do I suddenly receive the error message: "Compiler Error Message: The compiler failed with error code XXXXXXXXX"?
Viewed 17207 times since Wed, Feb 17, 2016
How to Solve the error: "405 - HTTP verb used to access this page is not allowed"?
Viewed 5261 times since Wed, Oct 24, 2018
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 9525 times since Mon, Jul 17, 2017
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 9338 times since Tue, Apr 2, 2013
How do I send an email from my ASP.NET website by using SMTP Authentication?
Viewed 6484 times since Tue, May 1, 2012
Do you support ASP.NET MVC 6?
Viewed 4677 times since Wed, Feb 17, 2016
I cannot see my website. What should I do?
Viewed 3797 times since Thu, May 3, 2012
|