I am going to assume you are using the send extra email to functionality ...
Change:
Code:
// send emails to other people
if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);
}
to
Code:
// send emails to other people
if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
$email_order2 = $email_order . EMAIL_SEPARATOR . "\n" . $order->customer['email_address'];
tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_TEXT_SUBJECT, $email_order2, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);
}
Should work - not tested though.
Regards,
Bookmarks