I checked the MailMessageObject and found the following:
Headers=HeaderCollection(5) { "Uid", "DateCreated", "DateReceived", "Date", "IsRead"
This means that you have three options. The output will be in string format.
message.Headers["DateCreated"]; message.Headers["DateReceived"]; message.Headers["Date"];
Mark
source share