最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
公布我调试好的.Net发邮件程序,C#源码发布。第一部分
时间:2022-07-02 12:03:52 编辑:袖梨 来源:一聚教程网
特点:
1. 支持SMTP验证
2. 支持群发功能
3. 支持各种免费邮箱,如sohu,163等
4. 支持Win2k Server自带的smtp服务器,即只要你联网,配置好smtp服务器,即可本机发邮件
5. 完整的错误代码,拥有Logs和HTMLlogs两个日志功能,可以输出详细的服务器--客户端交互日志
代码如下:
----------------------------------------------
using System;
using System.Text;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Collections;
namespace Sanxing.Mail.Data
{
public class ESmtpMail
{
//内部变量
///
/// 设置换行变量
///
private string enter=" ";
///
/// 设定语言代码,默认设定为GB2312,如不需要可设置为""
///
private string Charset="GB2312";
///
/// 发件人地址
///
private string From="";
///
/// 发件人姓名
///
private string FromName="";
///
/// 回复邮件地址
///
//public string ReplyTo="";
///
/// 收件人姓名
///
private string RecipientName="";
///
/// 收件人列表
///
private Hashtable Recipient=new Hashtable();
///
1. 支持SMTP验证
2. 支持群发功能
3. 支持各种免费邮箱,如sohu,163等
4. 支持Win2k Server自带的smtp服务器,即只要你联网,配置好smtp服务器,即可本机发邮件
5. 完整的错误代码,拥有Logs和HTMLlogs两个日志功能,可以输出详细的服务器--客户端交互日志
代码如下:
----------------------------------------------
using System;
using System.Text;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Collections;
namespace Sanxing.Mail.Data
{
public class ESmtpMail
{
//内部变量
///
/// 设置换行变量
///
private string enter=" ";
///
/// 设定语言代码,默认设定为GB2312,如不需要可设置为""
///
private string Charset="GB2312";
///
/// 发件人地址
///
private string From="";
///
/// 发件人姓名
///
private string FromName="";
///
/// 回复邮件地址
///
//public string ReplyTo="";
///
/// 收件人姓名
///
private string RecipientName="";
///
/// 收件人列表
///
private Hashtable Recipient=new Hashtable();
///
相关文章
- 《彩色点点战争》推图常用三大主c玩法详解 01-23
- 《燕云十六声》池鱼林木任务攻略 01-23
- 《大连地铁e出行》查看行程记录方法 01-23
- 《明日方舟》2025春节限定干员余角色介绍 01-23
- 《崩坏:星穹铁道》万敌光锥搭配攻略 01-23
- 《燕云十六声》一药千金任务攻略 01-23