码迷,mamicode.com
首页 > 其他好文 > 详细

smtpclient 邮件发送测试

时间:2015-01-02 14:39:21      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Mail;
using System.Net;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
SmtpClient sc = new SmtpClient("smtp.qq.com");
sc.Credentials = new NetworkCredential("739423721@qq.com", "*******");
sc.Send("739423721@qq.com", "1431758338@qq.com", "hello", "ceshi");
}
}
}

smtpclient 邮件发送测试

标签:

原文地址:http://www.cnblogs.com/ChineseMoonGod/p/4198367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!