Reply to a sent mail of particular date based on Subject

I see what u mean now. you can try the following my example here…

yourDate is datetime variable.
For your case that would be the date your trying to filter.

This should be a filter condition for your get email activity:

“[SentOn] >= '” + yourDate.ToLongDateString+“’ AND [SentOn] < '” + yourDate.AddDays(1).ToLongDateString+“'”

Hope this helps

1 Like