AbanteCart Community

Shopping Cart Operations => Support => General Support => Topic started by: quekbhj on September 08, 2013, 04:36:22 AM

Title: Order confirmation mail template
Post 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
Title: Re: Order confirmation mail template
Post by: abantecart on September 08, 2013, 09:33:25 AM
This reply built in mail/order_confirm.tpl template

And variables are built in storefront/model/checkout/order.php

You need to look for:

Code: [Select]
$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. 

Title: Re: Order confirmation mail template
Post by: quekbhj on September 09, 2013, 10:12:32 AM
Thank you! :)

Have a nice week ahead!