• C# System.Web.Mail.MailMessage 发邮件


    C# System.Web.Mail.MailMessage 发邮件

    新建控制台Console项目,然后添加 System.Web引用

    代码如下:

    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Globalization;
    using System.IO;
    //using System.IO.Pipes;
    using System.Net;
    using System.Net.Mail;
    using System.Reflection;
    using System.Text;
    using System.Text.RegularExpressions;
    
    namespace LongtengSupremeConsole
    {
        class Program
        {        
            static void Main(string[] args)
            {
                System.Web.Mail.MailMessage mail = new System.Web.Mail.MailMessage();
                mail.To = "test@qq.com";
                mail.From = "test@aliyun.com";
                mail.Subject = "测试邮箱";
                mail.BodyFormat = System.Web.Mail.MailFormat.Html;
                mail.Body = "这是一个是测试的内容!";
    
    
                mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); //身份验证  
                mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", mail.From); //邮箱登录账号  
                mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "*****"); //登录密码  
                mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", 25);//端口  
                //mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl", "true");//SSL加密  
                System.Web.Mail.SmtpMail.SmtpServer = "smtp.aliyun.com";    //企业账号用smtp.exmail.qq.com  
                System.Web.Mail.SmtpMail.Send(mail);
                Console.WriteLine("邮件发送完成!!");
                Console.ReadKey();
            }
    }
    }
  • 相关阅读:
    Linux Centos7配置mysql8.0数据库
    Linux Centos7配置ftp服务器
    线程池工具ThreadPoolExecutor
    Layui 实现input 输入和选择
    canvas验证码实现
    弹性布局flex 介绍
    java EE 新手入门了解
    java web工程web.xml介绍
    js 数组常用的一些方法
    详解为什么需要重写hashcode 和 equals 方法
  • 原文地址:https://www.cnblogs.com/1175429393wljblog/p/12015213.html
Copyright © 2020-2023  润新知