最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
一个通过web.Mail发送邮件的类
时间:2022-06-30 11:38:45 编辑:袖梨 来源:一聚教程网
using System;
using System.Web;
using System.Web.Mail;
using Dottext.Framework;
using Dottext.Framework.Configuration;
namespace YourNamespace.Email
{
///
/// Default implementation of the IMailProvider
///
public class SystemMail : IMailProvider
{
public SystemMail(){}
#region
private string _to;
public string To
{
get{return _to;}
set{_to = value;}
}
private string _from;
public string From
{
get{return _from;}
set{_from = value;}
}
private string _subject;
public string Subject
{
get{return _subject;}
set{_subject = value;}
}
private string _body;
public string Body
{
get{return _body;}
set{_body = value;}
}
#endregion
private string _adminEmail;
public string AdminEmail
{
get{return _adminEmail;}
set{_adminEmail = value;}
}
private string _smtpServer = "localhost";
public string SmtpServer
相关文章
- 幻兽帕鲁饲料箱怎么做 饲料箱制造方法介绍 07-31
- 燕云十六声天泉地位怎么晋升 天泉门派晋升方法 07-31
- 明末渊虚之羽龟纽金宝有什么用 龟纽金宝用途介绍 07-31
- 幻兽帕鲁怎么去掉无用词条 去掉无用词条方法介绍 07-31
- 人渣SCUM未安装EasyAntiCheat启动错误如何解决 解决方法一览 07-31
- 明末渊虚之羽羽族遗骸有什么用 羽族遗骸获取位置介绍 07-31