程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> message-WPF實現發送郵件功能,郵件發不出去怎麼回事。求助!

message-WPF實現發送郵件功能,郵件發不出去怎麼回事。求助!

編輯:編程綜合問答
WPF實現發送郵件功能,郵件發不出去怎麼回事。求助!

MailMessage message = new MailMessage();
message.To.Add("[email protected]");
message.From = new MailAddress("[email protected]");
message.Subject = "SUBJECT SUBJECT";
message.SubjectEncoding = Encoding.UTF8;
message.Body = "Body Body";
message.BodyEncoding = Encoding.UTF8;
message.IsBodyHtml = false;
message.Priority = MailPriority.Normal;
SmtpClient smtp = new SmtpClient();
smtp.Credentials = new System.Net.NetworkCredential("654321","password");
smtp.Host = "smtp.qq.com";
smtp.Port = 25;
object userState = message;
smtp.SendAsync(message,userState);

上面是代碼,不知道什麼問題,運行不報錯,就是收不到郵件。我是用的qq郵箱發的。

最佳回答:


檢查下用戶名密碼端口和smtp服務器,另外你的qq郵箱是否啟用了smtp

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