#cobinet_edv
It worked for me, simply put the line at the very end of "order_creation_notification.html.php" and "order_ststus_notification.html.php" notification files, for user account I don't know.
<?php $data->customer->user_email = array($data->customer->user_email,'email2@mywebsite.com','email3@mywebsite.com'); ?>
Replace "
This email address is being protected from spambots. You need JavaScript enabled to view it." with your actual email address, and delete the ",'
This email address is being protected from spambots. You need JavaScript enabled to view it.')".
As to the status file you also need the line
<?php $data->customer = $customer;?>
as the second last line.
In the create file you only need the code
<?php $data->customer->user_email = array($data->customer->user_email,'email2@mywebsite.com','email3@mywebsite.com'); ?>
as described above.
It MUST work!
Good luck
Lee