Faelean
Faelean
Hi, after we've updated from 6.6.1 to 7.4.0 we ran into an issue with the dependencies included. The core-module has jakarta.activation:2.0.1 and jakarta.mail:2.0.1 as direct dependencies. The smime-module has jakarta.activation-api:2.1.0...
I don't know if this might be related to #1 (issue doesn't mention signed mails and it works with non signed mails) and #4 (based on the issue and the...
We have an EML File where when running the following code: ```Java try (FileInputStream fileInputStream = new FileInputStream(emlFileName)) { Email email = EmailConverter.emlToEmail(fileInputStream); System.out.println(email.getHTMLText()); } ``` we get the following...
I've found a strange case where the sent date when looking at the Email Object is different than the one Outlook shows. ``` java String msgFileName = ".\\assets_sjm\\test.msg"; try (FileInputStream...