Skip to content

Wrong sent date when parsing mail #534

Open
@Faelean

Description

@Faelean

I've found a strange case where the sent date when looking at the Email Object is different than the one Outlook shows.

String msgFileName = ".\\assets_sjm\\test.msg";

try (FileInputStream fileInputStream = new FileInputStream(msgFileName)) {
    Email email = EmailConverter.outlookMsgToEmail(fileInputStream);
    System.out.println("Sent Date: " + email.getSentDate());
}

Sent Date: Mon Jun 10 08:46:28 CEST 2024
When I open the file in Outlook the sent date is 04.06.2024 15:31

The strange thing for me is that only one customer is able to produce these kind of mails, I haven't manage to create one myself.

The mail is exported from Outlook via Drag&Drop to our software, which then shows the sent date as the exact time when the mail was exported. This behaviour persists when downloading the file from their instance and then uploading it into another instance.
If I download the mail and open it in Outlook the correct sent date is displayed. When I drag the file on to Outlook the mail is sorted with the expected sent date, if I export it again from my Outlook and put in our software the correct date is shown and running the example from above the output is
Sent Date: Tue Jun 04 15:31:19 CEST 2024

test.zip

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions