在ASP.NET中使用SMTPMail傳送郵件的方法

iteye_20683發表於2009-12-17

出處:CSDN BLOG 作者:Brookes 時間:2006-12-5 14:12:00

在ASP中,就可以通過呼叫CDONTS元件傳送簡單郵件,在ASP.Net中,自然也可以。不同的是,.Net Framework中,將這一元件封裝到了System.Web.Mail名稱空間中。

一個典型的郵件傳送程式如下:

<script runat="server"> <br />MailMessage mail=new MailMessage(); <br /> mail.From="service@brookes.com"; <br /> mail.To="brookes@brookes..com"; <br /> mail.BodyFormat=MailFormat.Text; <br /> mail.Body="a test smtp mail."; <br /> mail.Subject="r u ok?"; <br /> SmtpMail.SmtpServer="localhost"; <br /> SmtpMail.Send(mail); <br /></script>

通常情況下,系統呼叫IIS自帶的預設SMTP虛擬伺服器就可以實現郵件的傳送。但是也經常會遇到這樣的錯誤提示:
The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for brookes@brookes.com

產生這個錯誤的原因除了地址錯誤的可能外,還有一個重要原因。如上文提到的,IIS並不帶有真正的郵件功能,只是借用一個“SMTP虛擬伺服器”實現郵件的轉發。在MSDN中,有如下提示:

如果本地 SMTP 伺服器(包括在 Windows 2000 和 Windows Server 2003 中)位於阻塞任何直接 SMTP 通訊量(通過埠 25)的防火牆之後,則需要查詢網路上是否有可用的智慧主機能用來中轉發往 Internet 的 SMTP 訊息。
智慧主機是一個 SMTP 伺服器,它能夠中轉從內部 SMTP 伺服器直接傳送到 Internet 的外出電子郵件。智慧主機應能同時連線到內部網路和 Internet,以用作電子郵件閘道器。

開啟預設SMTP虛擬伺服器-屬性-訪問-中繼限制,可以看到,這種轉發或者中繼功能受到了限制。在限制列表中,新增需要使用此伺服器的主機的IP地址,就可以解決上文提到的問題。
如果不使用IIS自帶的SMTP虛擬伺服器而使用其他真正的郵件伺服器,如IMail,Exchange等,常常遇到伺服器需要寄送者身份驗證的問題(ESMTP)。在使用需要驗證寄送者身份的伺服器時,會出現錯誤:

The server rejected one or more recipient addresses. The server response was: 550 not local host ckocoo.com, not a gateway

以前在ASP中,遇到這種問題沒有什麼解決的可能,只能直接使用CDO元件(CDONTS的父級元件):
conf.Fields[CdoConfiguration.cdoSMTPAuthenticate].Value=CdoProtocolsAuthentication.cdoBasic;
conf.Fields[CdoConfiguration.cdoSendUserName].Value="brookes";
conf.Fields[CdoConfiguration.cdoSendPassword].Value="XXXXXXX";

在.Net Framework 1.1中,顯然對這一需求有了考慮,在MailMessage元件中增加了Fields集合易增加ESMTP郵件伺服器中的寄送者身份驗證的問題。不過,這一方法僅適用於.Net Framework 1.1,不適用於.Net Framework 1.0版本。帶有寄送者身份驗證的郵件傳送程式如下:

<script runat="server"> <br />MailMessage mail=new MailMessage(); <br /> mail.From="service@brookes.com"; <br /> mail.To="brookes@brookes.com"; <br /> mail.BodyFormat=MailFormat.Text; <br /> mail.Body="a test smtp mail."; <br /> mail.Subject="r u ok?"; <br /> mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); //basic authentication <br /> mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "brookes"); //set your username here <br /> mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "walkor"); //set your password here <br /> SmtpMail.SmtpServer="lsg.moon.net"; <br /> SmtpMail.Send(mail); <br /></script>

有了這種方法,終於可以不必再借助於Jmail、EasyMail等第三方元件,而只簡單使用SmtpMai就可以l完成郵件的傳送了!

相關文章