2014年1月9日

c# 编程实现发email , 用gmail邮箱

摘要: 1 :加这两个 usingusing System.Net.Mail;using System.Net;2 : 发送人 和 收件人的设置 SmtpClient client = new SmtpClient("smtp.gmail.com", 587) { Credentials = new NetworkCredential("myEmailAddress@gmail.com", "myPassword"), EnableSsl = true }; ... 阅读全文

posted @ 2014-01-09 16:14 齐文宣 阅读(1132) 评论(0) 推荐(0)

导航