Feb 17
2010

Sending Email in ASP .NET

Written by Robert Greiner | posted in Programming, Tips and Tricks, Web Design | View Comments

I can’t think of too many websites that don’t send automated email. Unfortunately, for ASP .NET programmers, there are several incorrect and out-of-date code snippets online which try to explain how to send email.

Here’s the code I use on the contact form for my personal website which does the trick quite nicely.

/* using System.Net.Mail; */
MailMessage newMail = new MailMessage();
newMail.To.Add(toAddress);
newMail.Subject = subject;
newMail.Body = body;
newMail.From = new MailAddress(fromAddress, name);
newMail.IsBodyHtml = true;

SmtpClient SmtpSender = new SmtpClient();
SmtpSender.Port = 25; //or, whatever port your SMTP server operates on
SmtpSender.Host = "mail.yourdomain.com";
SmtpSender.Send(newMail);

Here, I’m using MailMessage to build the actual email message to be sent and SmtpClient to do the actual sending.

Now, the Web.config file needs to be updated so the server knows your email account credentials.

Add this code to your Web.config file before the final </configuration> tag:

<system.net>
  <mailSettings>
    <smtp>
      <network defaultCredentials="false"
           host="mail.yourdomain.com" port="25"
           userName="name-to-send-email@yourdomain.com"
           password="*****"/>
     </smtp>
   </mailSettings>
</system.net>

Now, you should be able to send automated email messages to your heart’s content. Enjoy.

Image From blueskyfactory

View Comments

  1. air jordan 8 says:

    The idea air jordan 8 of friends upstairs is new and original, nike air force shoesbut I think to buy XX in the professinal outlet store is to our profit because things there have high quality &low price.When we are not rich,it can help us save 50-70% money there Nike Air Force 1 Low,why not buy them there?ugg boots for sale

blog comments powered by Disqus
.NET Algorithmic Art ASP ASP .NET ASP .NET MVC audio Bill Gates C# code review Computational Art CouchDB CSS Database DateTime debug DevDays eclipse ethics FileSystem Git Improvement iPhone Java JQuery Knopflerfish Layouts mail Microsoft Oracle OSGi Processing Python Ruby SMTP SOA Software Piracy Source Control SQL StackOverflow tools TortoiseGit training Web Standards Windows XHTML