| Home » Categories » Multiple Categories |
Sample Code to Send email using ASP.NET1.1 |
|
Article Number: 83 | Rating: Unrated | Last Updated: Tue, May 1, 2012 at 11:11 PM
|
Our mail server is configured with SMTP authentication and all your code need to use SMTP Authentication before you can send email. If your code does not use SMTP authentication, the email will not be sent.
private void Page_Load(object sender, System.EventArgs e)
{
MailMessage mail = new MailMessage();
mail.To = "[email protected]";
mail.From = "[email protected]";
mail.Subject = "this is a test email.";
mail.Body = "Some text goes here";
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); //basic authentication
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "my_username_here"); //set your username here
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "super_secret"); //set your password here
SmtpMail.SmtpServer = "localhost"; //your real server goes here
SmtpMail.Send( mail );
}
|
Attachments
There are no attachments for this article.
|
How to Solve the error: "405 - HTTP verb used to access this page is not allowed"?
Viewed 5562 times since Wed, Oct 24, 2018
Why do I suddenly receive the error message: "Compiler Error Message: The compiler failed with error code XXXXXXXXX"?
Viewed 17641 times since Wed, Feb 17, 2016
Domain Name Server (DNS) Amplification Attack
Viewed 9697 times since Wed, Oct 15, 2014
Issue with Storing Session
Viewed 3975 times since Tue, Mar 24, 2015
How to solve ReportViewer error message: "An error has occurred during report processing. Input string was not in a correct format"
Viewed 8452 times since Tue, Jun 18, 2013
HTTP Error 502.5 - Process Failure error message when publishing an ASP.NET Core Website
Viewed 11043 times since Mon, Mar 27, 2017
My website session times out earlier than expected. Why?
Viewed 5172 times since Tue, May 1, 2012
Sample Code to Send email using ASP.NET 2
Viewed 9921 times since Tue, May 1, 2012
How do I query MySQL database in ASP.NET?
Viewed 12789 times since Tue, May 1, 2012
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 3811 times since Thu, May 3, 2012
|
