Hello,
I am aware that the boolean check for email flows are capable of checking a specific string in either the email subject, body, or both, to determine true and false path, but is it capable of checking for multiple different strings?
Hello,
I am aware that the boolean check for email flows are capable of checking a specific string in either the email subject, body, or both, to determine true and false path, but is it capable of checking for multiple different strings?
Yes, this is possible. Are you using the email builder to create your rules? On the side, you can switch to expression and there you can use the OR operator to check for multiple different strings. For example, this expression checks to see if there's keyword1 or keyword2 within the email body:
If(IsSet(Email.Message.body), Contains(Email.Message.body, "keyword1"), false) OR If(IsSet(Email.Message.body), Contains(Email.Message.body, "keyword2"), false)
Hi Lucie,
That is correct, I used email builder and the said expression and it works perfectly, thank you!
This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.