How to force running a process based on receiving an email

I already have a scheduled job to do some task. I need to implement another job checking the mail and if it finds any mail containing a specific work trigger the first job to run. is there any way to do it from uipath without windows scheduler

You can set up a separate automation as a ‘Listener’ and set it to run on a schedule every couple of minutes.

All it needs to do is check the inbox for the email trigger and if it finds it, use a ‘start job’ activity to trigger the other process. If it doesn’t find it, it just stops

1 Like