程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 使用GMail發郵件

使用GMail發郵件

編輯:C#入門知識

可以使用GMail發mail,據說G官方限制一天內同一封郵件最多發送到500個聯系人。代碼如下:

namespace ConsoleApplication9
{
    class Program
    {
        static void Main(string[] args)
        {
            var from = new MailAddress("[email protected]", "cary"); 
            var to = new MailAddress("[email protected]", "toname");
            var message = new MailMessage(from, to);
            message.Subject = "The subject";
            message.Body = "The message body";
            message.IsBodyHtml = true;
            var host = "smtp.gmail.com";
            var client = new SmtpClient(host, 587);
            client.EnableSsl = true;
            client.Credentials = new NetworkCredential("<<your username>>", "<<your password>>");
            client.Send(message);
            Console.ReadLine();        
        }          
    }
}
    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved