• 发送邮件


    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Net;
    using System.Net.Mail;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace SendEmail
    {
        class Program
        {
            static void Main(string[] args)
            {
                MailMessage mailMsg = new MailMessage();
    
                // 发件人邮箱
                mailMsg.From = new MailAddress("test@sina.cn", "钱氏集团");
                // 收件人邮箱,可以有多个收件人
                mailMsg.To.Add(new MailAddress("test@qq.com", "无边落木"));
                // 抄送人邮箱,可以有多个抄送人
                mailMsg.CC.Add(new MailAddress("testtest@163.com", "dsfsf"));
                // 发送邮件的标题 
                mailMsg.Subject = "关于国庆节放假通知";
                // 发送邮件的内容
                mailMsg.Body = "10月1号至3号加班,4号至18号放假!";
                // 将附件附加到邮件消息对象中 ,可以有多个附件。
                mailMsg.Attachments.Add(new Attachment(@"C:UsersTOMDesktop1.jpg"));
    
                // 发送邮件的服务器
                SmtpClient client = new SmtpClient("smtp.sina.cn");
                // 指定发件人的邮箱及邮箱密码
                client.Credentials = new NetworkCredential("test@sina.cn", "123456");
                client.Send(mailMsg);
    
                Console.WriteLine("发送成功");
                Console.ReadKey();
            }
        }
    }
  • 相关阅读:
    Nginx log日志参数详解
    sea.js模块加载工具
    sea.js模块加载工具
    Airbnb React/JSX 编码规范
    4.2 react patterns(转)
    4.1 react 代码规范
    3.5 compose redux sages
    3.3 理解 Redux 中间件(转)
    3.4 redux 异步
    3.1 开始使用 redux
  • 原文地址:https://www.cnblogs.com/shaomenghao/p/4211987.html
Copyright © 2020-2023  润新知