Linked Questions

Popular Questions

I found several questions here about detecting mail status in various mail servers, but still it's unclear how to do it using Outlook REST API.

In documentation we can see the response for request:

GET https://graph.microsoft.com/v1.0/me/messages/AAMkADhMGAAA=

But it seems like the answer doesn't have a field, which contains such information. I also looked into request for headers:

https://graph.microsoft.com/v1.0/me/mailfolders/inbox/messages?$select=subject,internetMessageHeaders

Unfortunately, there was no header like X-Failed-Recipients.

Are there any ways to get delivery status and/or failed recipients using Outlook API?

Related Questions