在Asp.Net中使用SmtpMail發送郵件的方法

來源:互聯網
上載者:User

  在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完成郵件的發送。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.