2010-09-24 52 views
0

我想通過下面的代碼來發送一個簡單的電子郵件:無法發送電子郵件無錯誤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]
請幫助。 謝謝。

+2

如果打算將它發送到'veerab @ orbees.com',那麼爲什麼只在'From'中設置該地址? – RedFilter 2010-09-24 12:01:21

+0

嘗試打開隊列文件夾中的郵件文件並查看標題並檢查是否所有內容都按要求設置了 – citronas 2010-09-24 16:25:10

+0

我檢查了標題並且一切都很正常。 – Abhimanyu 2010-09-27 14:37:32

回答

0

以下article應該可以幫到你。

+0

你能從鏈接中提取相關信息並將其包含在答案中。不要複製整篇文章並保留屬性。 – ChrisF 2010-09-24 12:05:23

+0

嗨dimi-toulakis,它沒有解決問題。 – Abhimanyu 2010-09-24 13:00:59

+0

如果它沒有解決問題,那麼爲什麼它被檢查爲答案? – Wes 2016-06-01 14:31:45