|
System.Web.Mail (SWM) is the .Net namespace used to send email in .Net Framework applications. SWM contains three classes:
1. MailMessage - used for creating and manipulating the mail message contents.
2. MailAttachments - used for creating a mail attachment to be added to the mail message.
3. SmtpMail - used for sending email to the relay mail server. More information on the System.Web.Mail Namespace can be found on MSDN here: http://msdn.microsoft.com/en-us/library/system.web.mail.aspx
|