当前位置: 首页 > 图文教程 > 网络编程 > ASP > 关于JMAIL如何在收件人处指定多个收件人

ASP
绑定txt文件到DataGrid
在用户离开页面时提示信息
asp + oracle 分页方法(不用存储过程)
asp + sqlserver 分页方法(不用存储过程)
验证身份证号是否正确的代码
检查有日文片假名的新闻
asp关键字函数运算附
ASP中也能解压缩rar文件
ASP文章系统解决方案
DW+ASP 玩转动态二级菜单
在ASP中操作数据库的方法
ASP做象资源管理器的树形目录
在asp中结合对象和组件
Active Server Pages是什么?
ActiveServerPages是怎样工作?
ASP脚本基础
ASP中的内建对象Server
在网页中动态的生成一个gif图片
ASP.NET中的状态管理
解决ASP执行DB查询中的特殊字符问题

ASP 中的 关于JMAIL如何在收件人处指定多个收件人


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 132 ::
收藏到网摘: n/a

  以在asp程序中指定,提交到JMail处理的时候
就可发到多个收信人信箱。
如下:
JMail.AddRecipient "[email protected]"
JMail.AddRecipient "[email protected]"
JMail.AddRecipient "[email protected]"


据我所知,应该不行,你可以用一个循环来设置嘛!
aryEmail = split("[email protected];[email protected];[email protected]", ";")
for i=0 to UBound(aryEmail)
  JMail.AddRecipient Trim(aryEmail(i))
next