// 创建邮件的接收者地址,并设置到邮件消息中
Address[] tos = null;
//将要群发的邮箱地址存在了个字符串中 用 ;隔开
String[] receivers =org.apache.commons.lang.StringUtils.split(to,";");
if (receivers != null){
// 为每个邮件接收者创建一个地址
tos = new InternetAddress[receivers.length];
for (int i=0; i
tos[i] = new InternetAddress(s);
}
}
}
// 将所有接收者地址都添加到邮件接收者属性中
message.setRecipients(Message.RecipientType.TO, tos);