Browse by Tags
Sorry, but there are no more tags available to filter with.
-
08 July 2007
Using Mail Message instead of SmtpMail
-
using System; using System.Net; using System.Net.Mail; namespace SmtpSample { class Program { static void Main( string [] args) { MailMessage message = new MailMessage (); message.From = new MailAddress ( "john_doe@users.com" ); message.To.Add( "jane_doe@users.com" ); message.Subject... Read More...
-
07 July 2007
Virus Scanner a Blessing and a Curse
-
I have been using a block of code to use email for years. Last week it stopped working. After endless searching I found a post suggesting it maybe the virus scanner. I was sure this was not the problem but I gave it a try. As you might have guessed, the virus scanner was blocking my internal SMTP traffic... Read More...