cherubrock74, on 17 June 2010, 18:22, said:
At the moment I cannot send out the fancy html invoice to customers but invoice and packingslip look ok in the admin panel...customers still get the regular text based email with info about their order
I am also trying to receive a copy of the order summary email to my store email address but I cant seem to get that either...but I think that's another problem
Just trying to fix one thing at the time
Any help please?
1) The words:
INVOICE_TEXT_INVOICE_NR 163
INVOICE_TEXT_INVOICE_DATE 06/17/2010
add this the code in catalog/admin/includes/languages/english/invoice.php:
define('INVOICE_TEXT_INVOICE_NR', 'Number:');
define('INVOICE_TEXT_INVOICE_DATE', 'Invoice date: ');
* is u need it also in packing slip add the same code to - catalog/admin/includes/languages/english/packingslip.php
** if u have other languages do the same to them copy/paste the code
2) About the email sending, yes it seems to be a small, but u can fix it:
so open
find this: catalog/includes/modules/email_invoice/email_invoice.php
if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
$ei_message->send(STORE_OWNER, SEND_EXTRA_ORDER_EMAILS_TO, $order2->customer['name'], $order2->customer['email_address'], EMAIL_TEXT_SUBJECT . ' ' . $insert_id);
replace with this:
if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
$ei_message->send('', SEND_EXTRA_ORDER_EMAILS_TO, $order2->customer['name'], $order2->customer['email_address'], EMAIL_TEXT_SUBJECT . ' ' . $insert_id);
* don`t forget to input the extra e-mail adress in Admin panel for extra e-mail to be sent!!!
Hope it helps!














