c# 发送邮件

闲着蛋疼。计划着改善公司的邮件服务。怎料公司网络封闭的太厉害了。我只能在家里利用开放点的网络来测试发送邮件;

利用qq邮箱发送到公司的企业邮箱上;

前提准备,登陆qq邮箱开启stmp服务。不开启的话没法通过代码登陆到你的邮箱;

c# 发送邮件_第1张图片

查询腾讯qq邮箱的smtp主机地址为:smtp.qq.com  端口是587,或者465

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Mail;
namespace mail
{
    class Program
    {
        static void Main(string[] args)
        {
            //发件人地址
            MailAddress from = new MailAddress("*********@qq.com");
            MailMessage message = new MailMessage();
            message.Body = "this is a test";
            message.IsBodyHtml = true;
            message.BodyEncoding = System.Text.Encoding.UTF8;
            //收件人地址
            message.To.Add("********bizip.com");
            message.Subject = "hello !";
            message.SubjectEncoding = System.Text.Encoding.UTF8;
            message.From = from;
            SmtpClient client = new SmtpClient();
            client.EnableSsl = true;
            client.Host = "smtp.qq.com";
            client.Port = 587;
            //邮箱账户和密码
            client.Credentials = new System.Net.NetworkCredential("mailacount","password");

            try
            {
                client.Send(message);
            }
            catch (Exception ex)
            {
                string mssage = ex.ToString();
            }          



        }
    }
}

很简单啊

vs2010测试通过!

你可能感兴趣的:(邮件,C#,smtp,邮箱,QQ邮箱)