I created a new email template, and that works fine in Magento, but I don't know how to add BCC addresses to the email.
You can add a bcc in the code where you send the email:
Mage::getModel('core/email_template')
->addBcc('[email protected]')
->sendTransactional(...
This is the answer I've found:
$mailTemplate->setTemplateSubject($mailSubject)->addBcc('[email protected]')
->sendTransactional($templateId, $sender, $email, $cus_name, $data, $storeId);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With