I have an image that I am trying to create as an attachment. I need to send the attachment as a jpg attachment. While I am able to send the attachment successfully, the file does not have the jpg extension. I am not clear how to add it.

    Message message = new MimeMessage(session);
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setText(text);
Multipart multipart = new javax.mail.internet.MimeMultipart();
multipart.addBodyPart(messageBodyPart);
**DataSource source = new ByteArrayDataSource(image, "application/x-any");
messageBodyPart.setDataHandler(new DataHandler(source));**
multipart.addBodyPart(messageBodyPart);
message.setContent(multipart);
Transport.send(message);
link|improve this question

59% accept rate
feedback

1 Answer

Try setting the correct mime type: image/jpg.
Furthermore, add the filename to your source: source.setFileName("myimage.jpg");

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.