s e r e n i t y Posted December 19, 2008 Share Posted December 19, 2008 Hey guys, So is it possible edit/remove the order process email? If so, how would I go about doing this? Regards, Ryan Thanks for not spamming Link to comment Share on other sites More sharing options...
germ Posted December 19, 2008 Share Posted December 19, 2008 /admin/orders.php this code: $email = STORE_NAME . "\n" . EMAIL_SEPARATOR . "\n" . EMAIL_TEXT_ORDER_NUMBER . ' ' . $oID . "\n" . EMAIL_TEXT_INVOICE_URL . ' ' . tep_catalog_href_link(FILENAME_CATALOG_ACCOUNT_HISTORY_INFO, 'order_id=' . $oID, 'SSL') . "\n" . EMAIL_TEXT_DATE_ORDERED . ' ' . tep_date_long($check_status['date_purchased']) . "\n\n" . $notify_comments . sprintf(EMAIL_TEXT_STATUS_UPDATE, $orders_status_array[$status]); tep_mail($check_status['customers_name'], $check_status['customers_email_address'], EMAIL_TEXT_SUBJECT, $email, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); To alter the email contents, alter the code in the first line (the line that starts with $email = ). To disable sending it put a // at the beginning of the second line (the line that starts with tep_mail). Always make a backup of any file before you alter it. If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there > Link to comment Share on other sites More sharing options...
s e r e n i t y Posted December 21, 2008 Author Share Posted December 21, 2008 Link to comment Share on other sites More sharing options...
s e r e n i t y Posted December 24, 2008 Author Share Posted December 24, 2008 I still havern't found out how to ammend this, the email continue to gets sent our. Any help? Link to comment Share on other sites More sharing options...
s e r e n i t y Posted December 31, 2008 Author Share Posted December 31, 2008 Problem solved. In check_process.php, comment out the tep_mail line :) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.