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

ASP
在线人数统计内幕
介绍一个制作下拉菜单完全不同的办法
server push具体实现(转)
如何完整纪录站内所有网页点选次数(转)
使用ASP常见问题解答(转载)
处理Asp中的错误
微软修补其IIS软件中的又一处安全漏洞
细细品味ASP.NET (一)
细细品味ASP.NET (二)
细细品味ASP.NET (三)
ASP+与JSP之间的抉择
细细品味ASP.NET (四)
细细品味ASP.NET (五)
用asp.net和xml做的新闻更新系统(1)
用asp.net和xml做的新闻更新系统(2)
用asp.net和xml做的新闻更新系统(3)
用ASP+XML打造留言本(1)
用ASP+XML打造留言本(2)
用ASP+XML打造留言本(3)
用ASP+XML打造留言本(4)

ASP 中的 W3 Jmail 使用范例


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 34 ::
收藏到网摘: 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)