您的位置:首页 > 编程语言 > PHP开发

SMTP命令 发送邮件 DOS命令

2014-06-27 14:04 465 查看
[b]

public   class Smtp
{
public Smtp() { }

public bool EnableSsl { get; set; }
public string From { get; set; }
public string Host { get; set; }
public string Password { get; set; }
public int Port { get; set; }
public string[] To { get; set; }
public string UserName { get; set; }
}


Smtp
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: