jayheng Posted December 11, 2008 Share Posted December 11, 2008 Hi all,I need help to modify the subject header of the various order statuses emails sent to the customer.Where is the script located?Thanks. Link to comment Share on other sites More sharing options...
sperio Posted August 7, 2009 Share Posted August 7, 2009 looking for this too... anyone any ideas? have looked all over... no where to modify email subjects Link to comment Share on other sites More sharing options...
sperio Posted August 8, 2009 Share Posted August 8, 2009 only solution I found is to mod the lang file.../mail/en/lang.phpadd to the file... $_LANGMAIL['Order confirmation'] = 'Your Order';got the inspiration in looking at the FR lang mod... if it can be change to french... it can change to the text we need...hope that helps <?php global $_LANGMAIL; $_LANGMAIL = array(); $_LANGMAIL['Order confirmation'] = 'Your Order'; ?> Link to comment Share on other sites More sharing options...
jhnstcks Posted August 8, 2009 Share Posted August 8, 2009 If you change the title of the order status in your admin>orders>statuses tab it will change the email subject to that.for example. if you change the status ffrom "shipped" to " Your order has been dispatched", the email subject will also change to that. Link to comment Share on other sites More sharing options...
sperio Posted August 8, 2009 Share Posted August 8, 2009 yes.... but the ORDER CONFIRMATION is strangely not there... all are there except for the very first email that is sent to the customer when after they have completed the order... Link to comment Share on other sites More sharing options...
jhnstcks Posted August 8, 2009 Share Posted August 8, 2009 In the french mails folder there is a lang.php file. If you open that you will see the email subject for various emails. Copy that file over into whichever language folder you want and change the end of the lines to whatever you want the subject to be.Below is my code for order confirmation email. $_LANGMAIL['Order confirmation'] = 'Your order has been Confirmed'; Link to comment Share on other sites More sharing options...
sperio Posted August 8, 2009 Share Posted August 8, 2009 yup that was exactly what I did above... however... it seems strange that there's no proper place to do the mod... but perhaps it might be better to do a lang mod... wish there is a MASTERFILE in our template... that way we can make mroe extensive changes/// Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now