在ASP中,可以通過調用CDONTS組件發送簡單郵件,在ASP.Net中,自然也可以。不同的是,.Net Framework中,將這一組件封裝到了System.Web.Mail命名空間中。
一個典型的郵件發送程式如下:
<%@ Import Namespace="System.Web.Mail" %> <script runat="server"> MailMessage mail=new MailMessage(); mail.From="service@brookes.com"; mail.To="brookes@brookes..com"; mail.BodyFormat=MailFormat.Text; mail.Body="a test smtp mail."; mail.Subject="r u ok?"; SmtpMail.SmtpServer="localhost"; SmtpMail.Send(mail); </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 的外出電子郵件。智慧主機應能同時串連到內部網路和網際網路,以用作電子郵件網關。
開啟預設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版本。帶有寄送者身分識別驗證的郵件發送程式如下:
<%@ Import Namespace="System.Web.Mail" %> <script runat="server"> MailMessage mail=new MailMessage(); mail.From="service@brookes.com"; mail.To="brookes@brookes.com"; mail.BodyFormat=MailFormat.Text; mail.Body="a test smtp mail."; mail.Subject="r u ok?"; mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); //basic authentication mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "brookes"); //set your username here mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "walkor"); //set your password here SmtpMail.SmtpServer="lsg.moon.net"; SmtpMail.Send(mail); </script> |
有了這種方法,終於可以不必再藉助於Jmail、EasyMail等第三方組件,而只簡單使用SmtpMai就可以l完成郵件的發送。