I want to attach multiple images with email in BB. How can I do this? Does any body have an idea? please help me.Below is my code which works fine when i send only one image
Just create a new SupportedAttachmentPart for each image and add them to the message with the addBodyPart method.
SupportedAttachmentPart
addBodyPart
Once the multipart is populated with the body part and the attachment parts, call msg.setContent(mp).
msg.setContent(mp)