Home » Categories » Multiple Categories

Sample Code to Send email using ASP.NET1.1

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 );
}

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 Attachments
There are no attachments for this article.
Related Articles RSS Feed
How do I redirect a subdomain to a subdirectory?
Viewed 4580 times since Tue, May 1, 2012
I cannot see my website. What should I do?
Viewed 4305 times since Thu, May 3, 2012
Do you allow custom COM components?
Viewed 3392 times since Tue, May 1, 2012
Sample Code to Send email using ASP.NET 2
Viewed 10227 times since Tue, May 1, 2012
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 4297 times since Thu, May 3, 2012
How can I enable ASP.NET 3.5 on your Control Panel?
Viewed 4343 times since Wed, May 2, 2012