ASP發送E-MAIL

來源:互聯網
上載者:User
如果你希望用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/



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.