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.
|
Sample Code to Send email using ASP.NET1.1
Viewed 5253 times since Tue, May 1, 2012
How to Solve the error: "405 - HTTP verb used to access this page is not allowed"?
Viewed 5059 times since Wed, Oct 24, 2018
About Azure Key Vault
Viewed 1525 times since Mon, Nov 2, 2020
Do you allow custom COM components?
Viewed 2752 times since Tue, May 1, 2012
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 9353 times since Mon, Jul 17, 2017
How can I enable ASP.NET 3.5 on your Control Panel?
Viewed 3756 times since Wed, May 2, 2012
Domain Name Server (DNS) Amplification Attack
Viewed 9352 times since Wed, Oct 15, 2014
My website session times out earlier than expected. Why?
Viewed 4802 times since Tue, May 1, 2012
HTTP Error 502.5 - Process Failure error message when publishing an ASP.NET Core Website
Viewed 10578 times since Mon, Mar 27, 2017
How do I redirect a subdomain to a subdirectory?
Viewed 3881 times since Tue, May 1, 2012
|