I am going to change the text of the customer order confirmation email.
At about line 292 of catalog/checkout_process.php
Code:
// lets start with the email confirmation
$email_order = STORE_NAME . "\n" .
EMAIL_SEPARATOR . "\n" .
EMAIL_TEXT_ORDER_NUMBER . ' ' . $insert_id . "\n" .
//nfmg edit I added the next line to add text to customer order email
EMAIL_TEXT_NOTE . "\n" .
EMAIL_TEXT_INVOICE_URL . ' ' . tep_href_link(FILENAME_ACCOUNT_HISTORY_INFO, 'order_id=' . $insert_id, 'SSL', false) . "\n" .
EMAIL_TEXT_DATE_ORDERED . ' ' . strftime(DATE_FORMAT_LONG) . "\n\n";
then, in includes/languages/english/checkout_process.php line 16
Code:
define('EMAIL_TEXT_SUBJECT', 'Order Process');
define('EMAIL_TEXT_ORDER_NUMBER', 'Order Number:');
define('EMAIL_TEXT_INVOICE_URL', 'Detailed Invoice:');
//nfmg edit I added the next line so that folks could find their downloads more easily later
define('EMAIL_TEXT_NOTE', 'Note: your downloads, if any, are also available at the following link');
define('EMAIL_TEXT_DATE_ORDERED', 'Date Ordered:');
define('EMAIL_TEXT_PRODUCTS', 'Products');
define('EMAIL_TEXT_SUBTOTAL', 'Sub-Total:');
define('EMAIL_TEXT_TAX', 'Tax: ');
Then you end up with a customer order email that looks like this:
ItsaDoozy Kite Store
------------------------------------------------------
Order Number: 207
Note: your downloads, if any, are also available at the following link
Detailed Invoice: https://www.itsadoozy.net/catalog/ac...p?order_id=207
Date Ordered: Thursday 09 June, 2005
It worked for me. I don't know if it's the approved way to do this. Your mileage may vary...
Bookmarks