
Originally Posted by
NickSMM
All I want is to have an email sent to the admins about new orders ready to be processed. No details of the particulars though.
You'll have to edit a core file directly:
/includes/classes/order.php
near the very end of the file you'll see two lines that look like this:
Code:
zen_mail('', SEND_EXTRA_ORDER_EMAILS_TO, SEND_EXTRA_NEW_ORDERS_EMAILS_TO_SUBJECT . ' ' . EMAIL_TEXT_SUBJECT . EMAIL_ORDER_NUMBER_SUBJECT . $zf_insert_id,
$email_order . $extra_info['TEXT'], STORE_NAME, EMAIL_FROM, $html_msg, 'checkout_extra', $this->attachArray);
change the second one as shown:
Code:
zen_mail('', SEND_EXTRA_ORDER_EMAILS_TO, SEND_EXTRA_NEW_ORDERS_EMAILS_TO_SUBJECT . ' ' . EMAIL_TEXT_SUBJECT . EMAIL_ORDER_NUMBER_SUBJECT . $zf_insert_id,
'New Order ready for processing ...' . $extra_info['TEXT'], STORE_NAME, EMAIL_FROM, array(), 'checkout_extra', $this->attachArray);
Bookmarks