AbanteCart Community
Shopping Cart Operations => Support => General Support => Topic started by: quekbhj on September 08, 2013, 04:36:22 AM
-
Hi
I would like to know the file name and its location for the order confirmation mail as i want to change the subject.
Currently, it display "Store name - Order #".
Thank you
Jasmine
-
This reply built in mail/order_confirm.tpl template
And variables are built in storefront/model/checkout/order.php
You need to look for:
$template->data['title'] = sprintf($language->get('text_subject'), html_entity_decode($order_row['store_name'], ENT_QUOTES,
'UTF-8'), $order_id);
Basically, you need to set your store name correctly in configuration.
-
Thank you! :)
Have a nice week ahead!