currently the adminEmail is set in the params.php file. I am trying to change the 'adminEmail' dynamically and then I can assign the email value I want. There is the code in the params.php.
return array(
// this is displayed in the header section
'title' => 'title here',
// this is admin email
'adminEmail' => '[email protected]',
But the admin emails can be more than one(eg. [email protected], [email protected]), how can I set admin email dynamically in params.php ?
Thanks in advance!