all email are daily check email bot how its possible
Hey,
You can use get outlook mail message and you can use For each activity and you can check with the subject line of your mail in IF condition
Thanks
Rounak
Hi @nikhil.patil
you can use a trigger to run the robot daily
and then the robot read all email
Hi @nikhil.patil ,
Schedule your Robot to run daily and use Get outlook mail message activity (you can use other mail activities as well) to read the mails daily.
Also to filter out and get only current date Email you can refer the below details :
Try these filters:
"[Received] >= '" + DateTime.Today.ToString("d") + " 00:00AM'"
or
"[ReceivedTime] >= '" + DateTime.Today.ToString("d") + " 00:00AM'"
or
"[Received] >= '08/08/2022' AND [Received] <= '08/10/2022' "
Reference: Get Outlook Mail Messages
If you want for three days ago:
"[Received] >= '"+now.AddDays(-3).Date.ToShortDateString+"' AND [Received] <= '"+now().Date.ToShortDateString+"'"
sFilter = "[Received] > '" & Format("8/10/2022 3:30pm", "ddddd h:nn AMPM") & "'"
Referenc…
Regards,
Rohith
Gokul001
(Gokul Balaji)
August 11, 2022, 11:51am
5