NTM: How to send email using Exchange in ASP.NET

Wednesday, April 23 2008

I always forget how to send emails using exchange, so I thought to put it on a post for me to find it when I need it.

<system.net>

<mailSettings>

<smtp>

<network host="exchangeServer" username=userName@mydomain.com password="password" />

</smtp> </mailSettings>

</system.net>

Cheers

Al