Get outlook message and filter body to send email when condition met

Hi,

you have to use Get Outlook Mail Messages or Get Exchange Mail Messages activity. Both as output returns list of mail messages. You can iterate through this list using for each, please use System.Net.Mail.MailMessage as TypeArgument for for each. You can view body using it’s property ‘.Body’, specified text in body can be found using regex (import System.Text.RegularExpressions namespace). Example: Sequence2.xaml (8.1 KB)