說明:更多的資訊請參考jmail說明,我想這已經足夠用的了。
(1)body(信件正文) : 字串
如:jmail.body = "這裡可以是使用者填寫的表單內容,可以取自from。"
(2)charset(字符集,預設為"us-ascii") : 字串
如:jmail.charset = "us-ascii"
(3)contenttransferencoding : 字串
指定內容傳送時的編碼方式,預設是"quoted-printable"
如:jmail.contenttransferencoding = "base64"
(4)contenttype(信件的contentype. 預設是"text/plain") : 字串
如果你以html格式傳送郵件, 改為"text/html"即可。
如:jmail.contenttype = "text/html"
(5)encoding : 字串
設定附件編碼方式(預設是"base64)。 可以選擇使用的是"base64", "uuencode" or "quoted-printable"
如:jmail.encoding = "base64"
(6)log(jmail建立的日誌,前提loging屬性設定為true,見下面) : 字串
如:使用response.write( jmail.log )語句列出日誌資訊。
(7)logging(是否使用日誌) : 布林型
如:jmail.logging = true
(8)recipients : 字串
唯讀屬性,返回所有收件人
如:response.write( "" + jmail.recipients + "" );
(11)sendername(發件人的姓名) : 字串
如:jmail.sendername = "renwang"
(12)serveraddress(郵件伺服器的位址) : 字串
你可以指定多個伺服器,用分號點開。可以指定埠號。
如果serveraddress保持空白,jmail會嘗試遠端郵件伺服器,然後直接傳送到伺服器上去。
如:jmail.serveraddress = "mail.263.***.**"
(13)subject(設定郵件的標題,可以取自from。):字串
如:jmail.subject = "客戶反饋表單"
(14)新增檔案附件到郵件
如:jmail.addattachment( "c:/anyfile.zip" )
(15)addcustomattachment( filename, data )
新增自定義附件.
如:jmail.addcustomattachment( "anyfile.txt", "contents of file" );
(16)addheader( header, value )
新增使用者定義的信件標頭。
如:jmail.addheader( "originating-ip","192.168.10.10" );
(17)addrecipient(收件人):字串
如:jmail.addrecipient( "info@dimac.***" );
(18)addrecipientbcc( email ),密件收件人:
如:jmail.addrecipientbcc( "renwang@163.***" );
(19)addrecipientcc( email ) ,抄送收件人:
如:jmail.addrecipientcc( "anone@mailhost.***" )
(24)execute() ,執行郵件的傳送
如:jmail.execute()
Jmail的主要引數列表
1 body 信件正文 字串 如 jmail.body 這裡可以是使用者填寫的表單內容,可以取自from。2 charset 字符集,預設為 us ascii 字串 如 jmail.charset us ascii 3 contenttransferencoding 字串 指定內容傳送時的編碼方式,...
Jmail的主要引數列表
jmail的主要引數列表 1 body 信件正文 字串 如 jmail.body 這裡可以是使用者填寫的表單內容,可以取自from。2 charset 字符集,預設為 us ascii 字串 如 jmail.charset us ascii 3 contenttransferencoding 字串 ...
Jmail主要引數
下面是乙個忘記密碼時的程式 前一段時間有發過乙個簡單的jmail郵件發郵件的 今天就把這個 做乙個具體的註解,並增加了另外兩個格式的 並舉幾個簡單的例子 首先是jmail.tpmail的核心 set jmail server.createobject jmail.tpmail 建立乙個jmail物件...