我想将嵌入式图像发送到电子邮件。我尝试了几乎所有可能的方法,但是没有运气。
我能够以内联方式添加图像,但是它们也出现在附件中,因此我无法避免该附件。
messageBodyPart = new MimeBodyPart();
String htmlText = "<H1>This is the image: </H1><img src=\"cid:image\">";
((MimeBodyPart) messageBodyPart).setText(htmlText, null, "html");
mp.addBodyPart(messageBodyPart);
// second part (the image)
messageBodyPart = new MimeBodyPart();
String filePath = "abc.png";
((MimeBodyPart) messageBodyPart).attachFile(filePath, "image/png", "base64");
((MimeBodyPart) messageBodyPart).setContentID("<image>");
mp.addBodyPart( messageBodyPart );
我也尝试使用messageBodyPart.setDisposition( MimePart.INLINE );
,但还是没有运气。
答案 0 :(得分:0)
使用MimeMessageHelper。它将使您的生活更加轻松
MimeMessageHelper helper = new MimeMessageHelper( mimeMessage, true );
helper.setText( htmlText, true );
helper.addInline( "image", signatureImage ); // image here is the cid
答案 1 :(得分:0)
您需要创建多部分/相关消息。 JavaMail FAQ有一个例子。