Hello,
I'm building a flow that gets the response from a form and adds it to an email, which content changes based on a selected value.
Instead of creating multiple scenarios using CONDITION/SWITCH, I created a string variable in which I'm adding all the scenarios as IF expressions with Contains to look at the selected value submitted with the form. The image shows what I'm describing, however I will likely have +30 scenarios, which explains why I don't want to rely on CONDITION/SWITCH.

My strings look like this:
if(and(contains(outputs('Get_response_details')?['body/XXXXX'],'COUNTRY1'),contains(outputs('Get_response_details')?['body/YYYYY'],'PRODUCT1')),body('CONTENT'),'')
So, if response from XXXXX contains COUNTRY1, and response from YYYYY contains PRODUCT1, then display CONTENT
However, I would like that if response from XXXXX contains COUNTRY1 or COUNTRY3 or COUNTRY5, and response from YYYYY contains PRODUCT1, to display CONTENT
it's the OR part that I can't figure out.
I thank you in advance for your help!