I just realized it last night when I’m trying to send email using my office SMTP Server and it fails. Thinking that my server down, I checked the web site and its working fine. I’ll try sending the email again and it fails again. Suspected that the SMTP services may be down, I do a [...]
Tag Archives: SMTP
Read SMTP configuration in System.Net.Mail
Posted by Dony on 21 October 2010
0 comments
System.Net.Mail can configure itself using special settings at our application configuration. This is an example of node sample at configuration file: <system.net> <mailSettings> <smtp from="info@isnandi.net"> <network host="localhost" password="test" userName="dony" /> </smtp> </mailSettings> </system.net>

