Filter property of Outlook

Hi,
In my workflow i used get outllook mail message with filter property and filter property value was
“[ReceivedTime] > ‘”+ DateTime.Now.ToString(“MM/dd/yyy 00:00:00”)+“’”. I want to get all mails after 12AM of current date. But i am not getting any mails even if the mails are there in inbox

You should write
“[ReceivedTime] > ‘”+ DateTime.Now.ToString(“MM/dd/yyyy 00:00:00”)+"’"

1 Like

Hi @Shashi123

Try this

“[ReceivedTime]>'”+Now.ToString(“MM/dd/yyyy hh:mm:as:tt”)

Thanks
Ashwin.S

1 Like