• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Condicional email in dropbox

Condicional email in dropbox 10 years 8 months ago #28485

Hi. Good night.
I have a small dropbox with 4 options. I have working email go to a specific email account when the option is selected in the dropdown.

I use this code in PHP Script in central option (This working).
if($_POST['form']['Donde'][0] == 'Tienda online')
$adminEmail['to'] = 'mail@mail.com';

Now i like send email to 2 email account and i try this code:
if($_POST['form']['Donde'][0] == 'Tienda online')
$adminEmail['to'] = 'mail@mail.com';
else
$adminEmail['to'] = 'mail2@mail2.com';

Too i try with this code:
if($_POST['form']['Donde'][0] == 'Tienda online')
$adminEmail['to'] = 'mail@mail.com';
$adminEmail['to'] = 'mail2@mail2.com';

Not working.

Can anyone tell me the correct code?

Thank you.
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!