示例#1
0
        public static PHPMailer Of(SimpleEmailTag z, string host)
        {
            PHPMailer m = new PHPMailer();

            m.Host = host;
            m.AddAddress(z.to);
            m.From      = z.from;
            m.FromName  = z.from;
            m.Subject   = z.subject;
            m.Body.Text = z.body;


            return(m);
        }
示例#2
0
        public static PHPMailer Of(SimpleEmailTag z, string host)
        {
            PHPMailer m = new PHPMailer();

            m.Host = host;
            m.AddAddress(z.to);
            m.From = z.from;
            m.FromName = z.from;
            m.Subject = z.subject;
            m.Body.Text = z.body;


            return m;
        }