Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Microsoft.Office.Interop.Outlook.Items.Restrict - not working correctly

Tags:

c#

mapi

I can pull email, walk through them, mark them as read, even sort. However, when I tried to restrict by ReceivedTime, it doesn't seem to be working. I get nothing back no matter what date/time I put in. I know ReceivedTime is valid based on the Sort works when I remove the restrict. Any suggestions?

Application app = new Application();
NameSpace outlookNs = app.GetNamespace("MAPI");

Microsoft.Office.Interop.Outlook.Folders folders = outlookNs.Folders[ohOptions.PSTName].Folders
Microsoft.Office.Interop.Outlook.Items items = folders["Inbox"].Items;

DateTime dt = DateTime.Now.Subtract(new TimeSpan(1,0,0));
items = items.Restrict("[ReceivedTime] > '" + dt.ToString("MM/dd/yyyy hh:mm:ss tt") + "'");

items.Sort("[ReceivedTime]", OlSortOrder.olAscending);

foreach (MailItem item in items)
{
    String from = item.SenderEmailAddress;
}
like image 427
Chizl Avatar asked Jun 18 '13 13:06

Chizl


2 Answers

Found the problem. Only took three days as there doesn't seem to be anything that mentions formatting for these date/times. It seems it doesn't like the seconds or the AM/PM to be there. Using military time and stripping the seconds allows it to work correctly.

items = items.Restrict("[ReceivedTime] > '" + dt.ToString("MM/dd/yyyy HH:mm") + "'");
like image 125
Chizl Avatar answered Sep 18 '22 03:09

Chizl


Make sure the current locale date format is really MM/dd/yyyy, not dd/MM/yyyy.

like image 1
Dmitry Streblechenko Avatar answered Sep 19 '22 03:09

Dmitry Streblechenko