我想通過下面的代碼來發送一個簡單的電子郵件:無法發送電子郵件無錯誤0xC00402C7
protected void email_Click(object sender, EventArgs e)
{
System.Net.Mail.MailMessage msgMail = new System.Net.Mail.MailMessage();
msgMail.From = new System.Net.Mail.MailAddress("[email protected]");
msgMail.To.Add(new System.Net.Mail.MailAddress("[email protected]"));
msgMail.Subject = "Request:Joing into the myitem.Title.ToString()";
msgMail.IsBodyHtml = true;
string strBody = "test mail";
msgMail.Body = strBody;
System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient();
}
我已經安裝在本地計算機上的SMTP服務器。郵件根目錄中的文件夾具有所有權限。
我的郵件留在Queue文件夾中一段時間,然後他們進入死信文件夾。我收到以下錯誤:
Unable to deliver this message because the follow error was encountered: "This message is a delivery status notification that cannot be delivered.".
特定的錯誤代碼是0xC00402C7。
郵件發件人是<>。
該消息是針對以下收件人。 [email protected]
請幫助。 謝謝。
如果打算將它發送到'veerab @ orbees.com',那麼爲什麼只在'From'中設置該地址? – RedFilter 2010-09-24 12:01:21
嘗試打開隊列文件夾中的郵件文件並查看標題並檢查是否所有內容都按要求設置了 – citronas 2010-09-24 16:25:10
我檢查了標題並且一切都很正常。 – Abhimanyu 2010-09-27 14:37:32