How to get all mails from SENT ITEMS folder which subject contain “Daily Task” of current month?
want to get all the mails subject which contain “Daily Task” in it of current month…
These are the mails in sent item folder…
I am using this filter :
"[ReceivedTime] >= ' " +now.Month.ToString+ "'"
But its giving me output from 3march, 4march, 5march… so on
I am not able to get 1st and 2nd march of mails from this folder…
This is my workflow…
@Vinit_Mhatre
Use :
get outlook mail messages activity and set the property to “sent” in place of "inbox’
Yeah i already done till this , but how to get all the mails of current month?
@Vinit_Mhatre
try this in “if” Condition to get the current month.
Now.ToString(“MM”)
@Vinit_Mhatre
Try this :
item.subjectContains(“Daily task”) And item.subjectContains(Now.ToString(“MM”))
No its extracting all the mails from previous month
Nevermind i figured it out, i applied this filter
"[ReceivedTime] >= ' 1/" +now.Month.ToString+ "'"
Its working properly
system
(system)
Closed
9
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.