Activity triggered by an email reply

Hi Guys, UiPath newbie here. :sweat_smile:
Really need your help on how to continue a sequence triggered by an email reply.
I need an activity that keeps checking my email messages until a certain keyword is found, which triggers the sequence to continue running.

Thank you in advance!

Hy @Jay15, welcome to Uipath Community!!!

You can do a robot to monitor your Outlook mail folder.

  • Use the Get Outlook mail activity to get all the messages from a specific folder, like inbox
  • Loop through the messages using a for each loop
  • check if the mail subject contains a specific keyword, item.subject.contains(yourkeyword). If true trigger an action
    This robot can be scheduled to run in short intervals to keep checking your mail continuously.

Regards