一个通过web.Mail发送邮件的类

作者:袖梨 2022-06-30
 
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

相关文章

精彩推荐