I am trying to work on creating a sequence with UiPath to automate the task of checking for unread email in Outlook that contains the word ‘Bill/Billing’ etc in the subject or email content. Afterwards, I will need to save any attachments in those emails.
I have created a sequence and did some testing on it, however the saving of email does not seem to work.
Would appreciate if anyone can provide me with guidance or help me understand!
I’ve tried implementing the one you have worked on, however it doesn’t detect the emails with the subject now and prompts me with the message box could it be the Filter properties that was set incorrectly?
“[Subject]=‘Bill’ Or [Subject]=‘Billing’ Or [Subject]='Bill No.'Or [Content]=‘Bill’ Or [Content]=‘Billing’ Or [Content]=‘Bill No.’”
You can try this way Remove the filters and then in your for each loop place a if with condition{item.Subject.Contains(“Bill”) or item.Subject.Contains(“Billing”)or item.Subject.Contains(“Bill No.”)or item.Body.Contains(“Bill No.”)or item.Body.Contains(“Bill”)or item.Body.Contains(“Billing”)} other than the filters and implement ( item.attachments.any if block ) in true block