如果你希望用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 "stelede@ozemail.com.au","stelede@ozemail.com.au","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="stelede@ozemail.com.au"
MailObject.To="j_smith@zentus.com"
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/