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;
                }
            }
        }
    }

  • 相关阅读:
    opencv中彩色图转换成灰度图rgb2gray
    C和MATLAB中:同时对多个变量连续赋值
    error LNK2019: 无法解析的外部符号
    空间中两直线位置关系
    百度网盘不能绑定QQ
    matlab中双站异面直线法定位目标
    Sublime Text3编辑器简介
    Sybase IQ使用过程中注意事项
    Sybase数据库常用函数
    Sybase数据库第三方软件安装
  • 原文地址:https://www.cnblogs.com/c-x-a/p/5531926.html
Copyright © 2011-2022 走看看