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("[email protected]", "*******");
sc.Send("[email protected]", "[email protected]", "hello", "ceshi");
}
}
}
时间: 2024-10-13 11:37:04