I have created a rule for sending an email after a new user registered. I would like to add a Rules Condition to send the email to the target based on the selection in the registration form.
For example: if I select the country as india I need to send to [email protected] and for other [email protected].
I have tried adding a condition in To mail receipt address:
$email = ($account->country == 'india'? [email protected] : '[email protected]') echo $email; Can you suggest how to handle the scenario?