Smtp mail sending class written in c #

Source: Internet
Author: User

// ********************** Created by Chen ************* *************
Using System;
Using System. IO;
Using System. Text;
Using System. Net;
Using System. Net. Sockets;
Using System. Collections;
Using System. Collections. Specialized;
Using KSN. Exceptions;
Using KSN. Validate;
Namespace KSN. Web. Mail
{
/// <Summary>
/// Email content
/// </Summary>
Public class MailMessage
{
Private string sender = null;
Private StringCollection receivers = new StringCollection ();
Private string subject = "";
Private string xMailer = "";
Private StringCollection attachments = new StringCollection ();
Private MailEncodings mailEncoding = MailEncodings. GB2312;
Private MailTypes mailType = MailTypes. Html;
Private byte [] mailBody = null;
/// <Summary>
/// Get or set the sender
/// </Summary>
Public string Sender
{
Get {return this. sender ;}
Set {this. sender = value ;}
}
/// <Summary>
/// Obtain the recipient address set
/// </Summary>
Public StringCollection Receivers
{
Get {return this. receivers ;}
}
/// <Summary>
/// Obtain or set the Email Subject
/// </Summary>
Public string Subject
{
Get {return this. subject ;}
Set {this. subject = value ;}
}
/// <Summary>
/// Get or set the email Transmitter
/// </Summary>
Public string XMailer
{
Get {return this. xMailer ;}
Set {this. xMailer = value ;}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.