Question

How to find items in Outlook inbox by from email?

This version works and finds email:

String sCriteria = "[From] = 'Sebastian Nowak'";
Outlook.Items filteredItems = inbox.Items.Restrict(sCriteria);

This version doesn't work, doesn't find any mail:

String sCriteria = "[From] = 'mymail@mydomain.com'";
Outlook.Items filteredItems = inbox.Items.Restrict(sCriteria);

How do I should search by email from wich mail was sent.

Was it helpful?

Solution

The property you are looking for is:

inbox.Items.Restrict("[SenderEmailAddress]='mymail@mydomain.com'");

confirmed using Outlook 12.0 library using VS2005

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top