Reputation: 425
I want to retrieve email opened date/time i.e. when the email is actually read.
Is it possible or not using EWS API?
In the EWS API there is the flag IsRead which is set when email is read so i need to find the date/time when this flag is set to true.
If not possible by EWS API is there any other API that can be used to achieve it?
Upvotes: 1
Views: 670
Reputation: 6912
Is it possible or not using EWS API?
No, it is not.
If not possible by EWS API is there any other API that can be used to achieve it?
Outlook object model, MAPI and Exchange do not provide information when message was read. It doesn't matter the choice of technology (EWS, REST, MAPI, etc.), message just doesn't have this information. What you able to get is just the flag if message was read.
Upvotes: 3