Jun
30
如果你希望用ASP发送E-MAIL,你需要安装一个A S P部件。有几种第三方厂商的部件你可以使用。但是在IIS4下,你可以使用CDONTS。
虽然名字奇怪,它是很容易使用的并且性能良好。如果你希望使用它,请跟随下面步骤。
1.检查你是否安装了SMTP服务。OPTION PACK缺省安装时是包括SMTP服务的。
SMTP服务安装后,在你的system32目录下会有一个文件叫CDONTS.DLL。
2.你可以用下面的简单脚本通过A S P发送E-MAIL:
$#@60;%
Dim MailObject
Set MailObject = Server.CreateObject("CDONTS.NewMail")
MailObject.Send "[email protected]","[email protected]","My subject","My text"
%$#@62;
是不是很简单?
发送附件
CDONTS的一个常用特性是用来在E-MAIL中发送附件。代码也不难写。
$#@60;%
Dim MailObject
Set MailObject = Server.CreateObject("CDONTS.NewMail")
att_file="c:\attachments\StandardPolicy.txt"
f_name="Policy.txt"
MailObject.From="[email protected]"
MailObject.To="[email protected]"
MailObject.Subject="Subject Text Here"
MailObject.Body="Body Text Here"
MailObject.AttachFile att_file,f_name
MailObject.Send
%$#@62;
第三方厂商部件
如果你对CDONTS不满意,下面的地址清单是你可以找到的第三方厂商部件(大多数你需要花钱购买)
Blat - http://gepasi.dbs.aber.ac.uk/softw/Blat.html
Try Looking through: http://www.15seconds.com/
虽然名字奇怪,它是很容易使用的并且性能良好。如果你希望使用它,请跟随下面步骤。
1.检查你是否安装了SMTP服务。OPTION PACK缺省安装时是包括SMTP服务的。
SMTP服务安装后,在你的system32目录下会有一个文件叫CDONTS.DLL。
2.你可以用下面的简单脚本通过A S P发送E-MAIL:
$#@60;%
Dim MailObject
Set MailObject = Server.CreateObject("CDONTS.NewMail")
MailObject.Send "[email protected]","[email protected]","My subject","My text"
%$#@62;
是不是很简单?
发送附件
CDONTS的一个常用特性是用来在E-MAIL中发送附件。代码也不难写。
$#@60;%
Dim MailObject
Set MailObject = Server.CreateObject("CDONTS.NewMail")
att_file="c:\attachments\StandardPolicy.txt"
f_name="Policy.txt"
MailObject.From="[email protected]"
MailObject.To="[email protected]"
MailObject.Subject="Subject Text Here"
MailObject.Body="Body Text Here"
MailObject.AttachFile att_file,f_name
MailObject.Send
%$#@62;
第三方厂商部件
如果你对CDONTS不满意,下面的地址清单是你可以找到的第三方厂商部件(大多数你需要花钱购买)
Blat - http://gepasi.dbs.aber.ac.uk/softw/Blat.html
Try Looking through: http://www.15seconds.com/