当前位置: 首页 > 图文教程 > 网络编程 > ASP > W3 Jmail 使用范例

ASP
论坛树状记录表的堆栈展开
Oracle大文本在ASP中存取问题的解决
ASP创建SQL Server数据库的两种方法
浅谈session_onend的调试
用ASP访问数据库的几种常见方式
教你一次下载网页中的所有资源
20种看asp源码的方法及工具
在ASP中使用智岛网格控件全过程
解决使用ASP无法连接ORACLE 9i数据库的问题
用Js判断输入的时间是否有效
ADO数据与XML数据间的转换的类
使用命名管道访问SQL Server
网页加速之网页结构篇
在红蜻蜓中实现多房间
在ASP中使用Oracle数据库技巧
关于分页办法
在VB中使用API函数(Any)
网站ASP漏洞小总结
网页之定时器详解
实用函数- 判断输入的是否是电话号码

ASP 中的 W3 Jmail 使用范例


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 40 ::
收藏到网摘: n/a

      
  
   <html>
   <head>
   <title>Confirmation </title>
   <body>
   <%
  
   Set JMail = Server.CreateObject("JMail.SMTPMail")
  
   ' This is my local SMTP server
   JMail.ServerAddress = "mail.yourdomain.com:25"
  
   ' This is me....
   JMail.Sender = "[email protected]"
   JMail.Subject = "Here you go..."
  
   ' Get the recipients mailbox from a form (note the lack of a equal sign).
   JMail.AddRecipient "[email protected]"
   JMail.AddRecipient "[email protected]"
  
   ' The body property is both read and write.
   ' If you want to append text to the body you can
   ' use JMail.Body = JMail.Body & "Hello world!"
   ' or you can use JMail.AppendText "Hello World!"
   ' which in many cases is easier to use.
   JMail.Body = "Here you go. Your request has been approved" &_
   "and the program is attached to this message"
  
  
   ' 1 - highest priority (Urgent)
   ' 3 - normal
   ' 5 - lowest
  
   JMail.Priority = 1
  
   JMail.AddHeader "Originating-IP", Request.ServerVariables("REMOTE_ADDR")
  
   ' Must make sure that IUSR_???? has access to the following files.
   JMail.AppendBodyFromFile "e:\mail\standard_footer.txt"
   JMail.AddAttachment "e:\products\MyProduct.exe"
  
   ' Send it...
   JMail.Execute
  
   %>
   <center>
  
   An e-mail has been sent to your mailbox (<%=request.form("email")%>).
  
   </center>
   </body>
   </html>
  
  (转自chinaasp)