C#实现QQ邮箱发送邮件
时间:2021-06-04 07:55:03|栏目:.NET代码|点击: 次
闲着蛋疼。计划着改善公司的邮件服务。怎料公司网络封闭的太厉害了。我只能在家里利用开放点的网络来测试发送邮件;
利用qq邮箱发送到公司的企业邮箱上;
前提准备,登陆qq邮箱开启stmp服务。不开启的话没法通过代码登陆到你的邮箱;

查询腾讯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测试通过!
总结
栏 目:.NET代码
下一篇:通过Web Service实现IP地址查询功能的示例
本文标题:C#实现QQ邮箱发送邮件
本文地址:http://www.codeinn.net/misctech/135243.html






