Hi,
I've got a shared mail box, lets call is Mailbox1 and 2 SharePoint lists, lets call them Success and Failed.
What I am trying to achieve is that when a mail arrives at Maibox1 it is picked up by a Flow. The flow looks at the subject line of the email and this will determine which list the email gets sent to. If the subject line contains either the word "success" or "Successful" it will get sent to the "Success" SP list. If the subject line contains anything else then it will go to the "Failed" SP list.
Can I put an "OR" in the @contains condition? at the moment I just have the one word, success but I'd like to add an OR to also look for "successful"
Current condition query:
@contains(triggerBody()?['Subject'], 'success')
Any help gratefully received.
Rob