C#实现QQ邮箱发送邮件
本文向大家介绍C#实现QQ邮箱发送邮件,包括了C#实现QQ邮箱发送邮件的使用技巧和注意事项,需要的朋友参考一下
闲着蛋疼。计划着改善公司的邮件服务。怎料公司网络封闭的太厉害了。我只能在家里利用开放点的网络来测试发送邮件;
利用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测试通过!
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对呐喊教程的支持。如果你想了解更多相关内容请查看下面相关链接
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#yiidian.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。