在ASP中,就可以透過呼叫CDONTS元件來發送簡單郵件,在ASP.Net中,自然也可以。不同的是,.Net Framework中,將此元件封裝到了System.Web.Mail命名空間中。
一個典型的郵件發送程式如下:
<%@ Import Namespace="System.Web.Mail" %>
<script runat="server">
MailMessage mail=new MailMessage();
mail.From=" [email protected] ";
mail.To=" [email protected] ";
mail.BodyFormat=MailFormat.Text;
mail.Body="a test smtp mail.";
mail.Subject="ru 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 [email protected]
產生這個錯誤的原因除了地址錯誤的可能外,還有一個重要原因。如上文提到的,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版本。帶有寄送者身份驗證的郵件發送程序如下:
<%@ Import Namespace="System.Web.Mail" %>
<script runat="server">
MailMessage mail=new MailMessage();
mail.From=" [email protected] ";
mail.To=" [email protected] ";
mail.BodyFormat=MailFormat.Text;
mail.Body="a test smtp mail.";
mail.Subject="ru 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完成郵件的傳送了!