you just need to use MimeMultipart object in your
java mail.
then for every attachment, just add a BodyPart object(which has the file path for the attachment) to the Multipart object.
MimeMultipart mp = new MimeMultipart();
mp.addBodyPart(mbp1);//just keep call this method to add your attachment to the MimeMultipart object
yeah
you should follow Ulf's link as well, the source code shows you how to get the attachment and attach it to your javamail

[ March 10, 2006: Message edited by: vivien siu ]