Hi guys, I have a question regarding the addition of code to allow the Hikashop system to, not only, email the customer on "Order Status", but to BCC or CC us as well. On a previous post
TOPIC: Adding New Order Manually
Nicolas replied with the forum link
www.hikashop.com/en/forum/3-bug-report/85655-adding-new-order-manually.html#115156
, and that worked for a few days until we did the Hikashop update com_hikashop_business_2.2.0_2013-07-25.tar. Now it's only sending us the order creation notification and not the customer. For now we changed the code at the bottom of the file back to it's original state. Below I've pasted in the change that was made to make the system CC us on the order creation email. Is there a new method that will do this with the new update?
Changes to Hikashop > System > Emails > Order Status Notification
Original Code for Order Status Notification:
<?php $data->customer = $customer;?>
Modified Code for Order Status Notification:
<?php /* $data->customer = $customer; */ ?>
<?php $data->customer->user_email = array($data->customer->user_email,'This email address is being protected from spambots. You need JavaScript enabled to view it.'); ?>