Is there a way to use combinations of conditions when setting notifications.
Here is an example to illustrate my needs
I have a form, that’s embedded in multiple language.
This page is translated, and the recipient of this form’s notification depends on the language it’s been submitted from. I make us of a language var paramater.
Now this form is dedicatied to professional, but for some reasons, some individuals demands through it. And we need these individual demands submitted to someone else.
So I added a radio button to let people declare if they’re an individual or not.
Now I need to exploit 2 criterias to set notifications:
Send To a@b.com when language-var= “en” AND status=“profesionnal”
Send To b@b.com when language-var != “en”
Send To b@b.com when status != “profesionnal”
How can I get there?