I would need to be CC’d on every single outgoing emails sent
-
Hello,
I’m trying to make CC to every email send to customer in WooCommerce.
{
function add_bcc_all_emails( $headers, $object ) {$headers = array(
$headers,
‘cc: joe <[email protected]>’ .”\r\n”,
);return $headers;
}
add_filter( ‘woocommerce_email_headers’, ‘add_bcc_all_emails’, 10, 2 );
}
I try to put this code in function.php but not work and make the email encoded.and I try this link :
https://www.businessbloomer.com/woocommerce-add-to-cc-bcc-order-email-recipients/
nothing happen.please can any one help?
Thank you very much in advance
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘I would need to be CC’d on every single outgoing emails sent’ is closed to new replies.