/ Published in: PHP
Overlook sending of emails in Mage_Sales_Model_Order->sendNewOrderEmail(), remove sending to customer from there.
(around line 872)
(around line 872)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* $sendTo = array( array( 'email' => $this->getCustomerEmail(), 'name' => $customerName ) ); */ if ($copyTo && $copyMethod == 'copy') { foreach ($copyTo as $email) { 'email' => $email, 'name' => null ); } }