关于JMAIL如何在收件人处指定多个收件人
发布时间:2006-10-14 2:58:54   收集提供:gaoqian
以在asp程序中指定,提交到JMail处理的时候
就可发到多个收信人信箱。
如下:
JMail.AddRecipient "somebody1@somewhere.com"
JMail.AddRecipient "somebody2@somewhere.com"
JMail.AddRecipient "somebody3@somewhere.com"


据我所知,应该不行,你可以用一个循环来设置嘛!
aryEmail = split("aa@bb.com;adf@sfda.net;dsfafdsa@china.com", ";")
for i=0 to UBound(aryEmail)
  JMail.AddRecipient Trim(aryEmail(i))
next
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50