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 = "me@mycompany.com";
mail.From = "you@yourcompany.com";
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.
|
I cannot see my website. What should I do?
Viewed 3715 times since Thu, May 3, 2012
How do I query MySQL Database in PHP ?
Viewed 3270 times since Tue, May 1, 2012
HTTP Error 502.5 - Process Failure error message when publishing an ASP.NET Core Website
Viewed 10629 times since Mon, Mar 27, 2017
How do I redirect a subdomain to a subdirectory?
Viewed 3904 times since Tue, May 1, 2012
Sample Code to Send email using ASP.NET 2
Viewed 9610 times since Tue, May 1, 2012
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 9396 times since Mon, Jul 17, 2017
How to solve ReportViewer error message: "An error has occurred during report processing. Input string was not in a correct format"
Viewed 8079 times since Tue, Jun 18, 2013
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 2805 times since Tue, May 1, 2012
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 9232 times since Tue, Apr 2, 2013
My website session times out earlier than expected. Why?
Viewed 4827 times since Tue, May 1, 2012
|