在ASP中就可以通過調用CDONTS組件發送簡單郵件在ASPNET中自然也可以不同的是Net Framework中將這一組件封裝到了SystemWebMail命名空間中
一個典型的郵件發送程序如下
<%@ 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:
Unable to relay for brookes@brookes
com
產生這個錯誤的原因除了地址錯誤的可能外還有一個重要原因如上文提到的IIS並不帶有真正的郵件功能只是借用一個SMTP虛擬服務器實現郵件的轉發在MSDN中有如下提示
如果本地 SMTP 服務器(包括在 Windows 和 Windows Server 中)位於阻塞任何直接 SMTP 通信量(通過端口 )的防火牆之後則需要查找網絡上是否有可用的智能主機能用來中轉發往 Internet 的 SMTP 消息
智能主機是一個 SMTP 服務器它能夠中轉從內部 SMTP 服務器直接發送到 Internet 的外出電子郵件智能主機應能同時連接到內部網絡和 Internet以用作電子郵件網關
打開默認SMTP虛擬服務器-屬性-訪問-中繼限制可以看到這種轉發或者中繼功能受到了限制在限制列表中添加需要使用此服務器的主機的IP地址就可以解決上文提到的問題
如果不使用IIS自帶的SMTP虛擬服務器而使用其他真正的郵件服務器如IMailExchange等常常遇到服務器需要寄送者身份驗證的問題(ESMTP)在使用需要驗證寄送者身份的服務器時會出現錯誤
The server rejected one or more recipient addresses
The server response was:
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 中顯然對這一需求有了考慮在MailMessage組件中增加了Fields集合易增加ESMTP郵件服務器中的寄送者身份驗證的問題不過這一方法僅適用於Net Framework 不適用於Net Framework 版本帶有寄送者身份驗證的郵件發送程序如下
<%@ 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
); //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>
有了這種方法終於可以不必再借助於JmailEasyMail等第三方組件而只簡單使用SmtpMai就可以完成郵件的發送了!
From:http://tw.wingwit.com/Article/program/net/201311/15428.html