jmail的属性和方法
body : string
(v3.0)
e-mail的主体
jmail.body = "hello world"
charset : string
(v3.0)
设定邮件的字符集,默认为"us-ascii"
jmail.charset = "us-ascii"
contenttransferencoding : string
(v3.0)
指定内容编码, 默认为 "quoted-printable"
jmail.contenttransferencoding = "base64"
contenttype : string
(v3.0)
这个邮件的头设置, 默认为 "text/plain" 能设
置成你需要的任何情况。 你想发送html信息,改这个头文件为 "text/html"
jmail.contenttype = "text/html"
deferreddelivery : date
(v3.0)
设置时间。 如果mailserver服务器支持,可以设置何时发送邮件。
jmail.deferreddelivery = new date( 2000, 02, 17 ).getvardate();
encoding : string
(v3.0)
this can be used to change the default attachment encoding from base64. valid options are
"base64", "uuencode" or "quoted-printable"
jmail.encoding = "base64"
errorcode : integer
(v3.0)
报错误信息,如果jmail.silent被设置成true
response.write( jmail.errorcode )
errormessage : string
(v3.0)
报错误信息,如果jmail.silent被设置成true
response.write( jmail.errormessage )
errorsource : string
(v3.0)
报错误信息,如果jmail.silent被设置成true
response.write( jmail.errorsource )
isoencodeheaders : boolean
(v3.0)
头信息代码按照iso-8859-1字符设置。 the default is true.
jmail.isoencodeheaders = false
lazysend : boolean
(v3.0)
这个属性是将邮件放入缓冲直至发出为止,的不到任何的错误信息
jmail.lazysend = true;
log : string
(v3.0)
当loging被设置后,这个log被jmail生成
response.write( jmail.log )
logging : boolean
(v3.0)
能/不能登陆用jmail
jmail.logging = true
maildomain : string
(v3.0)
可以忽略 ehlo/helo 状态对你的mailserver
jmail.maildomain = "hello.world.com"
mimeversion : string
(v3.0)
专门的 mime 版本. the default is "1.0"
jmail.mimeversion = "1.0"
priority : integer
(v3.0)
邮件的优先级,可以范围从1到5。
越大的优先级约高,比如,5最高,1最低
一般设置为3
jmail.priority = 3
recipients : string
(v3.0)
这个信息的接收者只有只读属性
response.write( "" + jmail.recipients + "" )
replyto : string
(v3.0)
指定一个可选的回信地址
jmail.replyto = "president@dimac.net"
returnreceipt : boolean
(v3.0)
是否按寄件人的要求回信,默认是"false"
jmail.returnreceipt = true
sender : string
(v3.0)
邮寄的地址
jmail.sender = "batman@dimac.net"
sendername : string
(v3.0)
收信人姓名
jmail.sendername = "bat man"
serveraddress : string
(v3.0)
server的地址。可以有很多的server地址,后可跟端口号
jmail.serveraddress = "mail.mydom.net; mail2.mydom.net:2500"
silent : boolean
(v3.0)
设置成true后jmail将检查所有的邮件在 jmail.execute() 执行后
返回真或假根据信件发送的成功与否depending on the success of the operation
jmail.silent = true
simplelayout : boolean
(v3.0)
设置成true减少jmail产品头数量
jmail.simplelayout = true
subject : string
(v3.0)
邮件的标题。
jmail.subject = "dimac rocks big time!"
usepipelining : boolean
(v3.0)
管道的支持。
jmail.pipelining = false
jmail的方法
addattachment( filename, [contenttype] )
(v3.0)
加入一个附件
jmail.addattachment( "c:\\autoexec.bat" );
addheader( xheader, value )
(v3.0)
加入一个头信息
jmail.addheader( "originating-ip","193.15.14.623" );
addnativeheader( header, value )
(v3.0)
加入一个头信息
jmail.addnativeheader( "mta-settings", "route" );
addrecipient( email )
(v3.0)
加入一个收件者
jmail.addrecipient( "info@dimac.net" );
addrecipientbcc( email )
(v3.0)
屏蔽某个接受者。不给其发送邮件
jmail.addrecipientbcc( "someone@somedomain.net" );
addrecipientcc( email )
(v3.0)
抄写一份给另一接受者
jmail.addrecipientcc( "someone@somedomain.net" );
addrecipientex( email, name )
(v3.0)
加入和邮件相对应的名称
jmail.addrecipientex( "info@dimac.net", "dimac info" );
appendbodyfromfile( filename )
(v3.0)
将文件的内容发送出去
jmail.appendbodyfromfile( "c:\\mytext.txt" );
appendtext( text )
(v3.0)
添加附件
jmail.appendtext( "text appended to message body" );
clearattachments()
(v3.0)
清除附件列表
jmail.clearattachments();
clearcustomheaders()
(v3.0)
清空所有的用户头信息
jmail.clearcustomheaders();
clearrecipients()
(v3.0)
清空收件箱
jmail.clearrecipients();
close()
(v3.0)
强行制止邮件的发送
jmail.close();
execute() : boolean
(v3.0)
执行邮件发送到server
jmail.execute();
extractemailaddressesfromurl( bstrurl, [bstrauth] )
(v3.0)
从url或下载加入邮件地址
jmail.extractemailaddressesfromurl( "http://duplo.org/generateemaillist.asp" );
logcustommessage( message )
(v3.0)
登陆用户信息到jmail的log,这个功能只有将loging设置为true时可以用
jmail.logcustommessage( "hello world" );