| 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.
|
Do you support ASP.NET MVC 6?
Viewed 5468 times since Wed, Feb 17, 2016
I receive this error message: "Directory Listing Denied. This Virtual Directory does not allow contents to be listed."
Viewed 11278 times since Mon, Apr 30, 2012
HTTP Error 502.5 - Process Failure error message when publishing an ASP.NET Core Website
Viewed 11434 times since Mon, Mar 27, 2017
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 10343 times since Tue, Apr 2, 2013
How do I query MySQL Database in PHP ?
Viewed 3925 times since Tue, May 1, 2012
My website session times out earlier than expected. Why?
Viewed 5501 times since Tue, May 1, 2012
How can I enable ASP.NET 3.5 on your Control Panel?
Viewed 4391 times since Wed, May 2, 2012
I cannot find a way to enable ASP.NET 4.5 on my Control Panel
Viewed 11560 times since Tue, Sep 11, 2012
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 4355 times since Thu, May 3, 2012
Why do I suddenly receive the error message: "Compiler Error Message: The compiler failed with error code XXXXXXXXX"?
Viewed 18358 times since Wed, Feb 17, 2016
|
