0

Unable to sent multiple copy of email using Oscommerce (checkout)

Wednesday, November 7, 2007

It is possible for multiple users to receive a copy of the order email by entering the email addr
ess is the following field in the general configuration section.


The field "SEND_EXTRA_ORDER_EMAILS_TO" is maily used to send multiple copies.


Check whether the following code is present in file checkout_process.php. If it is not present ad
d the following:
// send emails to other people
if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_TEXT_SUBJECT . ' ' .
$insert_id, $email_order, STORE_OWNER, STORE_OWNER_
EMAIL_ADDRESS);
}


This will fix the issue.

0 Responses to "Unable to sent multiple copy of email using Oscommerce (checkout)"