How to read mails from a particular ender in uipath

To read emails from a particular sender in UiPath, you can use the Read Email activity and filter the emails based on the sender's email address. Here's a step-by-step guide:

Prerequisites:

  1. You have a UiPath robot with the Read Email activity installed.
  2. You have a mailbox set up with IMAP or POP3 protocol.
  3. You have the sender's email address.

Steps:

  1. Create a new workflow: Open UiPath Studio and create a new workflow.
  2. Add the Read Email activity: Drag and drop the Read Email activity from the Activities panel to the workflow designer.
  3. Configure the Read Email activity:
    • Set the Mailbox property to the name of your mailbox (e.g., your_email_address@your_domain.com).
    • Set the Protocol property to IMAP or POP3, depending on your mailbox settings.
    • Set the Username and Password properties to your mailbox credentials.
  4. Filter emails by sender: In the Read Email activity, click on the Filter button and select From as the filter criteria.
  5. Enter the sender's email address: In the From field, enter the email address of the sender you want to filter by (e.g., sender_email_address@sender_domain.com).
  6. Set the filter operator: Select the filter operator as Contains or Equals, depending on your requirements.
  7. Read the emails: Run the workflow, and the Read Email activity will read all emails from the mailbox that match the filter criteria (i.e., emails from the specified sender).

Tips and Variations:

By following these steps, you should be able to read emails from a particular sender using UiPath's Read Email activity.