gpt4 book ai didi

java - 使用javamail发送邮件以及嵌入的图像

转载 作者:行者123 更新时间:2023-11-30 09:58:23 24 4
gpt4 key购买 nike

我想发送带有嵌入图像的邮件。为此,我使用了以下代码。它不是完整的代码。它是代码的一部分

        Multipart multipart = new MimeMultipart("related");
// Create the message part
BodyPart messageBodyPart;
messageBodyPart = new MimeBodyPart();
messageBodyPart.setText(msgBody); // msgbody contains the contents of the html file
messageBodyPart.setHeader("Content-Type", "text/html");
multipart.addBodyPart(messageBodyPart);

//add file attachments
DataSource source;
File file = new File("D:/sample.jpeg");
if(file.exists()){
// add attachment
messageBodyPart = new MimeBodyPart();
source = new FileDataSource(file);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(file.getName());
messageBodyPart.setHeader("Content-ID", "<BarcodeImage>");
messageBodyPart.setDisposition("inline");
multipart.addBodyPart(messageBodyPart);
}

// Put parts in message
msg.setContent(multipart);
Transport.send(msg);

我面临的问题是,我可以收到邮件,但看不到图片。它没有显示在邮件中。
下面是我的部分html文件

             <img src=\"cid:BarcodeImage\" alt="Barcode" width="166" height="44" align="right" />

请帮我看看为什么邮件中没有显示图片,附件中也没有?

最佳答案

我偶然发现了类似的问题。以下帖子对我帮助很大: How to send email with embedded images using Java代码中最重要的部分是:

String cid = generateCID();
MimeBodyPart textPart = new MimeBodyPart();
textPart.setText("<html><head>"
+ "<title>This is not usually displayed</title>"
+ "</head>n"
+ "<body><div><strong>Hi there!</strong></div>"
+ "<div>Sending HTML in email is so <em>cool!</em> </div>n"
+ "<div>And here's an image: <img src=\"cid:\"" + cid + " /></div>"
+ "<div>I hope you like it!</div></body></html>",
"US-ASCII", "html");
content.addBodyPart(textPart);

MimeBodyPart imagePart = new MimeBodyPart();
imagePart.attachFile("resources/teapot.jpg");
imagePart.setContentID("<" + cid + ">");
imagePart.setDisposition(MimeBodyPart.INLINE);
content.addBodyPart(imagePart);

函数 generateCID() 必须返回唯一的字符串。例如:

java.util.UUID.randomUUID()

关于java - 使用javamail发送邮件以及嵌入的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/974196/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com