Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Email text change


MrsD

Recommended Posts

I want to change the text in the order confirmation email. (I want to add to the part that says, "Your order will not ship until we receive payment.")

 

I have seen this addressed, and folks are told to look here:

includes/languages/english/checkout_process.php

 

 

However, all I see there is:

 

<?php

/*

$Id: checkout_process.php,v 1.26 2002/11/01 04:22:05 hpdl Exp $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2002 osCommerce

 

Released under the GNU General Public License

*/

 

define('EMAIL_TEXT_SUBJECT', 'Order Process');

define('EMAIL_TEXT_ORDER_NUMBER', 'Order Number:');

define('EMAIL_TEXT_INVOICE_URL', 'Detailed Invoice:');

define('EMAIL_TEXT_DATE_ORDERED', 'Date Ordered:');

define('EMAIL_TEXT_PRODUCTS', 'Products');

define('EMAIL_TEXT_SUBTOTAL', 'Sub-Total:');

define('EMAIL_TEXT_TAX', 'Tax: ');

define('EMAIL_TEXT_SHIPPING', 'Shipping: ');

define('EMAIL_TEXT_TOTAL', 'Total: ');

define('EMAIL_TEXT_DELIVERY_ADDRESS', 'Delivery Address');

define('EMAIL_TEXT_BILLING_ADDRESS', 'Billing Address');

define('EMAIL_TEXT_PAYMENT_METHOD', 'Payment Method');

 

define('EMAIL_SEPARATOR', '------------------------------------------------------');

define('TEXT_EMAIL_VIA', 'via');

?>

 

 

 

Where is the text?

MrsD :huh:

Link to comment
Share on other sites

in Catalog/Checkout_process.php about line 220

 

 

// lets start with the email confirmation

$email_order = STORE_NAME . "\n" .

// additional text message

$email_order .= "\n\nPUT HERE YOUR TEXT. \n\n" .

// end of additional text message

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...