Re: how to send batch emails

2004-10-13 Thread Jay Chandran
msg.setSubject(subject); msg.setContent(message, "text/plain"); Transport.send(msg); } } - Original Message - From: "Caroline Jen" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAI

Re: how to send batch emails

2004-10-13 Thread Caroline Jen
I have been using the same utility class (JavaMail API) to send e-mails. The code works OKay. Now, instead of the String toAddress I have String[] toAddress = selectRecipientsForm.getSelectedEmailAddresses(); will the same code works for sending batch e-mails? --- Duncan Mills <[EMAIL PROT