Hi,
The order_status_notification email in HikaMarket is a copy of the HikaShop order_status_notification email with just little modification in order to include new variables for the vendors.
If you want to access to the user, you can do it using the customer in the variables
$vars = array(
'LIVE_SITE' => HIKASHOP_LIVE,
'URL' => $order_url,
'ORDER_PRODUCT_CODE' => (bool)$shopConfig->get('show_product_code', false),
'order' => $data->cart,
'billing_address' => @$data->cart->billing_address,
'shipping_address' => @$data->cart->shipping_address,
'customer' => $data->customer, // the new line to add
'vendor' => $data->vendor
);
So you will be able to access to the customer content using something like:
{VAR:customer.name}
{VAR:customer.email}
Regards,