The converted PDF only contains placeholders for the images. The images are only listed in the external attachment list.
See example email: lotus-notes.zip (118.2 KB)
Outlook and other EML converted files are ok, the problem affects only Lotus Notes E-Mails
Please create a sample Java application (source code without compilation errors) that helps us to reproduce your problem on our end and attach it here for testing. We will investigate the issue and provide you more information on it.
We have closed the ticket EMAILJAVA-35120 as ‘Not a Bug’. The you need to check the ContentDisposition.Inline Attachment option for Lotus notes emails as shown below to get the desired output.
eml = MailMessage.load(fis);
if (isLotusNotes) {
for (Attachment att : eml.getAttachments()) {
if (att.getContentId() != null && att.getContentId().length() > 0) {
att.getContentDisposition().setInline(true);
}
}
}