Hi,
I have a problem with the MSG to PDf conversion. The datetime indicated in the “Sent” field does not use the local timezone. It is always in GMT. I tried to force the timezone offset but nothing changes.
Here is the code I use :
LOG.debug("[conversionGroupDocs] Email conversion ");
EmailLoadOptions emailLoadOptions = new EmailLoadOptions();
emailLoadOptions.setConvertOwned(false);
emailLoadOptions.setConvertOwner(true);
emailLoadOptions.setTimeZoneOffset((double) 1);
emailLoadOptions.setPreserveOriginalDate(true);
Converter converter = new Converter(chemCompletFicEntree, emailLoadOptions);
PdfConvertOptions options = new PdfConvertOptions();
converter.convert(chemFichierPDFSortie, options);
converter.close();
Thank you for your help