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

  • 相关阅读:
    在 LR 中如何解决Socket 接收数据的验证
    UE 的文件比较方法
    使用plSQL连接Oracle报错,SQL*Net not properly installed和TNS:无法解析指定的连接标识符
    plsql developer连接oracle数据库
    将列表中的字符以‘*’连接生成一个新的字符串
    ElasticSearch之CURL操作
    MySQL 5.7.21 免安装版配置教程
    C# IL DASM 使用-破解c#软件方法
    For-each Loop,Index++ Loop , Iterator 那个效率更高
    10种简单的Java性能优化
  • 原文地址:https://www.cnblogs.com/c-x-a/p/5531926.html
Copyright © 2011-2022 走看看