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

Posted 龙腾一族至尊龙骑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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();


 

龙腾一族至尊龙骑

以上是关于C# System.Web.Mail.MailMessage 发邮件的主要内容,如果未能解决你的问题,请参考以下文章

C#进阶C# 泛型

C#进阶C# 匿名方法

C#进阶C# 多线程

C# 教程

[C#教程01]C# 简介

用 C# 编写 C# 编译器,先有鸡还是先有蛋?