Reputation: 109
I am getting messages from my inbox, using Outlook Mail API
I can request a specific message by message id, however is it possible to request by a certain sender email address, if so how?
Upvotes: 2
Views: 717
Reputation: 109
Found out how to do it.... https://msdn.microsoft.com/office/office365/APi/complex-types-for-mail-contacts-calendar#UseODataqueryparameters
Using $filter=From/EmailAddress/Address eq '[email protected]' , filters out the emails from the specified sender
Upvotes: 1