New Zenner
- Join Date:
- Apr 2010
- Location:
- Canada, Winnipeg
- Posts:
- 15
- Plugin Contributions:
- 0
How to add a field to the Confirmation Email?
ZenCart Confirmation Email.
I am trying to add a line to the email sent out for order confirmation.
I made the following changes.
I should see "This is your Ticket", but all I see is "EMAIL_TICKET_1"
The email works fine, but does not find the proper text.
What am I doing wrong?
email/email_template_checkout.html
added at end of CSS:
.ticket {background-color:#FF6600; border:1px #9a9a9a; width:542px; height:200px; padding:2px; font-size:10px; }
added at end of HTML:
includes/languages/english/checkout_process.php
added after line 42:
define('EMAIL_TICKET_1', 'This is your ticket');
admin/orders.php
added after line 124:
$html_msg['EMAIL_TICKET_1'] = str_replace('\n','',EMAIL_TICKET_1);
I am using Zencart 1.3.9 and Sophie Blue template
What am I missing?
Thanks
Keith Bradley