mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/69114797/how-can-i-send-on-hold-woocommerce-email-notification-to-admin-as-well-as-custom/69115233
13 lines
453 B
Text
13 lines
453 B
Text
function filter_woocommerce_email_headers( $header, $email_id, $order ) {
|
|
// Compare
|
|
if ( $email_id == 'customer_on_hold_order' ) {
|
|
// Prepare the the data
|
|
$formatted_email = utf8_decode( 'My test <my_test@email.com>' );
|
|
|
|
// Add Bcc to headers
|
|
$header .= 'Bcc: ' . $formatted_email . '\r\n';
|
|
}
|
|
|
|
return $header;
|
|
}
|
|
add_filter( 'woocommerce_email_headers', 'filter_woocommerce_email_headers', 10, 3 );
|