Describe the bug
When using the Reply() method everything works as it should, but a customer notified us that the Sent Time in the reply chain is not correct and is in UTC. I'm not sure if this is a bug or not, but I'm not sure how to correct this.
Reply receipt: Sent should read 4:11:52 PM (Original emails received date)
From: ######## - #### #### ##### <#####@####.com>
Sent: Tuesday, August 17, 2021 9:11:52 PM
To: #########
Subject: #######
To Reproduce
//API POST to send email
await _graphClient.Users[emailAccount].Messages[messageId]
.Reply(message, body)
.Request()
.PostAsync();
Expected behavior
Have the Sent: header in the reply shown as it is when it originally came in. Currently it's being convert to UTC with no offset.
AB#10776
Describe the bug
When using the Reply() method everything works as it should, but a customer notified us that the Sent Time in the reply chain is not correct and is in UTC. I'm not sure if this is a bug or not, but I'm not sure how to correct this.
Reply receipt: Sent should read 4:11:52 PM (Original emails received date)
To Reproduce
//API POST to send email
await _graphClient.Users[emailAccount].Messages[messageId]
.Reply(message, body)
.Request()
.PostAsync();
Expected behavior
Have the Sent: header in the reply shown as it is when it originally came in. Currently it's being convert to UTC with no offset.
AB#10776