W3 Jmail 使用范例

<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 = "myemail@mydomain.net"
JMail.Subject = "Here you go..."

' Get the recipients mailbox from a form (note the lack of a equal sign).
JMail.AddRecipient "mum@any.com"
JMail.AddRecipient "dad@some.com"

' 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:mailstandard_footer.txt"
JMail.AddAttachment "e:productsMyProduct.exe"

' Send it...
JMail.Execute

%>
<center>

An e-mail has been sent to your mailbox (<%=request.form("email")%>).

</center>
</body>
</html>

时间: 2024-10-27 04:57:56

W3 Jmail 使用范例的相关文章

W3 Jmail使用说明中文版

W3 Jmail使用说明中文版 jmail.smtpmail Body : String (v3.0) 信件体,正文,使用AppendText追加内容 如:JMail.Body = "Hello world" Charset : String (v3.0) 字符集,缺省为"US-ASCII" 如:JMail.Charset = "US-ASCII" ContentTransferEncoding : String (v3.0) 指定内容传送时的编

W3 Jmail中文使用说明

      W3 Jmail 使用说明   jmail.smtpmail     Body : String        (v3.0)        信件体,正文,使用AppendText追加内容        如:JMail.Body = "Hello world"    Charset : String        (v3.0)        字符集,缺省为"US-ASCII"        如:JMail.Charset = "US-ASCII&

W3 Jmail 简要介绍

jmail 使用w3 JMail 可以在asp应用里面发送电子邮件,而不需要使用一个诸如Eudora/exchange/outlook   之类的邮件客户端.w3 Jmail发送邮件速度快,功能丰富,而且是免费的,可以直接下载.       下载地址:http://download.dimac.net/jmail/jmail.exe       使用环境    Webserver (IIS4/PWS4)    Microsoft Windows NT or Microsoft Windows 9

使用W3 JMail实现邮件发送的解决方案(1)

W3 JMail 邮件组件是Dimac公司开发的用来完成邮件的发送.接收.加密和集群传输等工作的.w3 Jmail组件是国际最为流行的邮件组件之一,当今世界上绝大部分ASP程序员都在使用w3 Jmail组件构建邮件发送系统,那是因为w3 Jmail组件使用了新的内核技术,使其更加可靠和稳定.一.下面向读者介绍w3 Jmail4.3组件的新特性:1. w3 Jmail4.3组件重新设计了其内部结构--使用Message对象代替原来的单一对象Jmail.smtpmail发送邮件:2. w3 Jmai

利用W3 JMAIL组件收POP3邮件

jmail|jmail组件 <% @LANGUAGE=VBSCRIPT %><% dim startpagedim endpagestartpage=int(request("start"))endpage=int(request("end")) Set pop3 = Server.CreateObject( "JMail.POP3" ) uid=trim(request("uid")) pwd=trim(r

W3 Jmail 参考说明

jmail.smtpmail Body : String(v3.0) 信件体,正文,使用AppendText追加内容如:JMail.Body = "Hello world"Charset : String(v3.0) 字符集,缺省为"US-ASCII" 如:JMail.Charset = "US-ASCII" ContentTransferEncoding : String(v3.0) 指定内容传送时的编码方式,缺省是"Quoted-P

使用W3 JMail实现邮件发送的解决方案(3)(完)

(接上篇)8. Attachment对象属性(或方法) 描述 New(FileName,ContentType,Data):Pointer 创建一个可以加入到Attachments集合的附件.如果指定Data的值,那么Jmail将创建一个以Data参数为内容的自定义附件. SaveToFile(FileName) 保存附件到硬盘. ContentType():String 返回附件类型(ContentType) Data():String 返回附件的内容. BinaryData():String

c#封装jmail的pop3收邮件

jmail|封装|收邮件 *w3 JMail v4.4 Professional 的获取请自行 google!或参阅 http://community.csdn.net/Expert/TopicView.asp?id=3739405w3 JMail v4.4 Professional 是一个 COM 的组件,我用 C# 把其 POP3 COM 类封装成一个用于收取邮件的 .Net 组件:实现了 //同步事件  public event MessagesEventHandler MessageRe

使用JMail组件代替Sql Mail发送Email

jmail|jmail组件 说两句:在某人最困难的时候,写下此文,寄给某某报想骗点稿费,结果石沉大海,若干年后,翻腾硬盘翻出来了.呵呵,或许可以对希望在SqlServer中发送邮件的网友有所帮助. 54powerman^_^      Sql Mail技术给每一位数据库开发人员和DBA(数据库管理员)带来了极大的方便,利用该技术,Sql Server数据库代理程序可以在系统出现异常的时候自动发送Email通知管理员,开发人可以利用它让数据库自动定期的修改用户密码,然后发送Email通知用户--等