HOW TO send an email programmatically using C# with GMail
This is derived from a forum posting. System.Net.Mail.MailMessage mail = new System.Net.Mail.MailMessage(); System.Net.NetworkCredential cred = new System.Net.NetworkCredential(”yourid@gmail.com”, “yourpwd”); mail.To.Add(”acme@acme.com”); Read the full story » [...more]






















