Simulating Email in .NET
...SmtpClient as I've done in the code below
static void Main( string [] args) { // note the use of the MailAddress class // this allows me to specify display names as well as email addresses MailAddress from = new MailAddress( "admin@fabrikam.com" , "Fabrikam Website" ); MailAddress to = new MailAddress( "mari@fabrikam.com" , "Mari Joyce" );...





