2010-09-28 127 views
0

我想用gmail郵箱服務器從我的網站發送郵件,我已經註冊資格谷歌應用程序,我有我公司的郵件在Gmail中。問題使用Gmail,郵件服務器

IAM收到此錯誤: System.Net.WebException:遠程名稱不能被解析:smtp.gmail.com'

這是爲什麼不工作,使用電子郵件和密碼

+0

也請提供代碼。 – anishMarokey 2010-09-28 14:54:31

+0

和完整的堆棧跟蹤 – 2010-09-28 16:46:58

回答

0
    MailMessage message = new MailMessage(from, to, subject, body); 
      message.IsBodyHtml = true; 
      message.Priority = MailPriority.High; 
      SmtpClient mailClient = new SmtpClient(); 
      mailClient.Credentials = new System.Net.NetworkCredential 
        ("[email protected]", "__________"); 
      mailClient.Port = 587; 
      mailClient.Host = "smtp.gmail.com"; 
      mailClient.EnableSsl = true; 
      mailClient.Send(message); 
      message.Dispose(); 
相關問題