| 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 an Error Message "Validation of viewstate MAC failed"
Viewed 10319 times since Tue, Apr 2, 2013
Do you support ASP.NET MVC 6?
Viewed 5454 times since Wed, Feb 17, 2016
How to solve ReportViewer error message: "An error has occurred during report processing. Input string was not in a correct format"
Viewed 8780 times since Tue, Jun 18, 2013
HTTP Error 502.5 - Process Failure error message when publishing an ASP.NET Core Website
Viewed 11419 times since Mon, Mar 27, 2017
Sample Code to Send email using ASP.NET1.1
Viewed 5965 times since Tue, May 1, 2012
Why do I suddenly receive the error message: "Compiler Error Message: The compiler failed with error code XXXXXXXXX"?
Viewed 18345 times since Wed, Feb 17, 2016
I cannot find a way to enable ASP.NET 4.5 on my Control Panel
Viewed 11554 times since Tue, Sep 11, 2012
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 10321 times since Mon, Jul 17, 2017
Domain Name Server (DNS) Amplification Attack
Viewed 10023 times since Wed, Oct 15, 2014
Do you allow custom COM components?
Viewed 3431 times since Tue, May 1, 2012
|
