RameshPasa
RameshPasa

Reputation: 425

How to get date/time when email is opened in office 365 using EWS API?

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

Answers (1)

Slava Ivanov
Slava Ivanov

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

Related Questions