在ASP中就可以通过调用CDONTS组件发送简单邮件在ASPNET中自然也可以不同的是Net Framework中将这一组件封装到了SystemWebMail命名空间中
一个典型的邮件发送程序如下
<%@ Import Namespace=
System
Web
Mail
%>
<script runat=server>
MailMessage mail=new MailMessage();
mailFrom=service@brookescom;
mailTo=brookes@brookescom;
mailBodyFormat=MailFormatText;
mailBody=a test smtp mail;
mailSubject=r u ok?;
SmtpMailSmtpServer=localhost;
SmtpMailSend(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();
mailFrom=service@brookescom;
mailTo=brookes@brookescom;
mailBodyFormat=MailFormatText;
mailBody=a test smtp mail;
mailSubject=r u ok?;
mailFieldsAdd(http://schemasmicrosoftcom/cdo/configuration/smtpauthenticate ); //basic authentication
mailFieldsAdd(http://schemasmicrosoftcom/cdo/configuration/sendusername brookes); //set your username here
mailFieldsAdd(http://schemasmicrosoftcom/cdo/configuration/sendpassword walkor); //set your password here
SmtpMailSmtpServer=lsgmoonnet;
SmtpMailSend(mail);
</script>
有了这种方法终于可以不必再借助于JmailEasyMail等第三方组件而只简单使用SmtpMai就可以完成邮件的发送了!