zoukankan      html  css  js  c++  java
  • .net active up mail 邮件发送

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using ActiveUp.Net.Mail;

    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                Send();
            }
            public static void Send()
            {
                Message mail = new Message();
                mail.From = new Address("from");
                mail.Charset = "utf-8";
                mail.ContentTransferEncoding = ContentTransferEncoding.Base64;
                mail.Date = System.DateTime.UtcNow;
                List<string> toList = new List<string>();
                toList.Add("tomail");
                //接收地址
                foreach (var to in toList)
                {
                    mail.To.Add(to);
                }
              
                  //标题  同时设置编码为utf-8
                mail.Subject = Codec.RFC2047Encode("test使用様", Encoding.UTF8.BodyName);
                //邮件内容
                mail.BodyHtml.Charset = "utf-8";
            
              
               string body="As promised, the requested document.<br/>RegardsJohn";
                mail.BodyHtml.Text =body;
                                             
                try
                {
                    SmtpClient.SendSsl(mail, mailhost,userid, mailpass, SaslMechanism.Login);

                }
                catch (Exception)
                {

                    throw;
                }
            }
        }
    }

  • 相关阅读:
    拨号进入防盗界面
    手机开机或启动广播接收者
    time、datetime
    py 包和模块,软件开发目录规范
    递归函数
    匿名函数,内置函数
    三元表达式,列表生成式,生成器生成式
    迭代器,生成器
    XPath
    闭包,装饰器
  • 原文地址:https://www.cnblogs.com/c-x-a/p/5531926.html
Copyright © 2011-2022 走看看