最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
用c#写的smtp邮件发送类
时间:2022-07-02 11:12:16 编辑:袖梨 来源:一聚教程网
//**********************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
{
///
/// 邮件内容
///
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;
///
/// 获取或设置发件人
///
public string Sender
{
get{return this.sender;}
set{this.sender=value;}
}
///
/// 获取收件人地址集合
///
public StringCollection Receivers
{
get{return this.receivers;}
}
///
/// 获取或设置邮件主题
///
public string Subject
{
get{return this.subject;}
set{this.subject=value;}
}
///
/// 获取或设置邮件传送者
///
public string XMailer
{
get{return this.xMailer;}
set{this.xMailer=value;}
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
{
///
/// 邮件内容
///
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;
///
/// 获取或设置发件人
///
public string Sender
{
get{return this.sender;}
set{this.sender=value;}
}
///
/// 获取收件人地址集合
///
public StringCollection Receivers
{
get{return this.receivers;}
}
///
/// 获取或设置邮件主题
///
public string Subject
{
get{return this.subject;}
set{this.subject=value;}
}
///
/// 获取或设置邮件传送者
///
public string XMailer
{
get{return this.xMailer;}
set{this.xMailer=value;}
相关文章
- 《无限暖暖》围巾蚯蚓具体作用介绍 12-24
- 《无限暖暖》星夜守望连衣裙获得方法介绍 12-24
- 《无限暖暖》魔物试炼幻境解锁方法介绍 12-24
- 《无限暖暖》磐岩晶石获得方法介绍 12-24
- 《无限暖暖》巨石岩仔打法攻略分享 12-24
- 《无限暖暖》布布果在哪 12-24