本文介绍了如何使用JavaMail API将电子邮件中的链接嵌入到电子邮件中附加的文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在电子邮件中嵌入一个链接,以使用JavaMail API在电子邮件中已附加的文件.

I want to embed a link in email for file already attached in email message using JavaMail API.

例如,我正在发送带有某些附件的电子邮件.现在,我想为电子邮件中可用的所有文件嵌入链接.

For example, I am sending an email with some attachments. Now I want to embed link for all files which are available in email message.

您能帮我吗?

我正在使用以下代码在电子邮件中附加文件:

I am using below code to attach a file in email message:

MimeBodyPart messageBodyPart = new MimeBodyPart();
DataSource source = new FileDataSource(attachFile);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(attachFileName);

推荐答案

按以下代码设置附件:

MimeBodyPart messageBodyPart = new MimeBodyPart();
DataSource source = new FileDataSource(attachFile);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setHeader("Content-ID","file");
messageBodyPart.setFileName(attachFileName);

在上面的代码中,Content-ID被定义为文件,可以在锚标记的href中用作引用:

In the above code Content-ID is defined as file which can used as reference in href of anchor tag as:

<a href='cid:html'>link text</a>

这篇关于如何使用JavaMail API将电子邮件中的链接嵌入到电子邮件中附加的文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 10:54