Sending Mail in .NET Using SmtpClient
The .NET SmtpClient class which is in the System.Net.Mail namespace enables the sending of mail through the ubiquitous Simple Mail Transfer Protocol (SMTP). To send a simple text-based mail, first instantiate an SmtpClient object, set its Host property to your SMTP server address, and finally call Send: SmtpClient clientObj = new SmtpClient(); clientObj.Host = “mail.myisp.net”; [...]
Read more



1:56 am by csharphelp