Zen Cart Logo
Forums / General Questions / Add message to confirmation email

Add message to confirmation email

Views: 1,961

Results 1 to 3 of 3
20 Jul 2012, 10:06 AM
#1
paulcreedy avatar

paulcreedy

New Zenner

Join Date:
Sep 2010
Posts:
43
Plugin Contributions:
0

Add message to confirmation email

I would like to add the following message to the email confirmation that is sent to the customer.

"If your order does not arrive within 14 days from the date of your order please contact us."

I don't totally understand how the email and customisation works.

Could someone tell me what I need to edit?

Thank you

21 Jul 2012, 1:25 PM
#2
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,081
Plugin Contributions:
56

Re: Add message to confirmation email

You could edit the file /includes/languages/english/YOUR_TEMPLATE/checkout_process.php (if the file doesn't exist in your template's override directory, copy the file from /includes/languages/english/checkout_process.php first) and change

define('EMAIL_THANKS_FOR_SHOPPING','Thanks for shopping with us today!');

to

define('EMAIL_THANKS_FOR_SHOPPING','Thanks for shopping with us today! If your order does not arrive within 14 days from the date of your order please contact us.');
22 Jul 2012, 11:44 PM
#3
paulcreedy avatar

paulcreedy

New Zenner

Join Date:
Sep 2010
Posts:
43
Plugin Contributions:
0

Re: Add message to confirmation email

Thank you

I'll give that a go.