Thanks Jerome for your reply.
I was focusing on order_creation_notification.html.php when looking mails sent to Admin...
This one is for customer and I saw order_admin_notification.html.php ... for admin
I modified the order image with my Logo : OK
The problem is now that strings like HI_CUSTOMER are only correct in customer mail, but not in admin mail.
The difference is :
- admin :
'HI_CUSTOMER' => JText::sprintf('HI_CUSTOMER', @$mail->to_name),
- customer :
$customer_name = @$customer->name;
if(empty($customer_name)) $customer_name = @$data->cart->billing_address->address_firstname;
'HI_CUSTOMER' => JText::sprintf('HI_CUSTOMER', $customer_name),
Do you think it's an harmonisation needed in Hikasop ?
OK for payment, but it would be fine to also have a nice email, like for the order !
Is it difficult to implement, as you already have the code ?
When do you think to implement it ?
Regards