Hello,
I am facing a problem when creating an automated cloud flow.
The idea is to create an autoreply system for a shared box but taking into account several keywords and especially taking into keywords case (uppercase and lowercase).

1) When an email arrives in a shared box, there is first a first control condition which checks that the sender's address is an external address and that there is no mention of Automatic Reply to avoid an infinite loop.
2) If this condition is validated, a second control condition begins. It checks that if the subject of the mail contains certain values ​​(by checking the case of these values) then an automatic mail is sent. Otherwise, the process is cancelled.

My problem is the following, when I indicate that my expression is equal to "true", there is no departure of mail (whether the keywords are in the subject of the mail or not).
On the other hand, if I indicate that my expression is equal to "false" I do have a start of mail but also with the problem that the keywords are in the subject of the mail or not.
or (contains(toLower(triggerBody()?['Subject']), 'IRISBOX'),or (contains(toLower(triggerBody()?['Subject']), 'RENOLUTION'),contains(toLower(triggerBody()?['Subject']), 'PRIMES'),contains(toLower(triggerBody()?['Subject']), 'UR2'),contains(toLower(triggerBody()?['Subject']), 'REP-'),contains(toLower(triggerBody()?['Subject']), 'COMPLEMENT'),contains(toLower(triggerBody()?['Subject']), 'INCOMPLET'),contains(toLower(triggerBody()?['Subject']), 'RENOVATION'),contains(toUpper(triggerBody()?['Subject']), 'rénolution'),contains(toUpper(triggerBody()?['Subject']), 'rénovation'),contains(toUpper(triggerBody()?['Subject']), 'complément'),contains(toUpper(triggerBody()?['Subject']), 'toevoeging'),contains(toUpper(triggerBody()?['Subject']), 'onvolledige'),contains(toUpper(triggerBody()?['Subject']), 'premies'),contains(toUpper(triggerBody()?['Subject']), 'renovatie')))
Can you help me?
Thanking you,