How can I send e-mails?

This is actually outrageously simple. In .NET 2.0 they made it so simple to send e-mails from an application. There is a namespace System.NET.Mail. This contains two classes SMTPClient and MailMessage with these two objects you can easily send mail messages. The SMTP Client really is used to communicate with the server and the mail message object is exactly what it says, an e-mail message. This is actually very simple once you learn how to use it. Though the first article posted will probably tell you everything you need to know I found this link to be helpful:

http://aspnet.4guysfromrolla.com/articles/072606-1.aspx
 
Back
Top