Skip to content

Instantly share code, notes, and snippets.

@AmeliaBriscoe
Created October 4, 2019 02:55
Show Gist options
  • Save AmeliaBriscoe/a866924c607784aff095dcf7ab90024b to your computer and use it in GitHub Desktop.
Save AmeliaBriscoe/a866924c607784aff095dcf7ab90024b to your computer and use it in GitHub Desktop.
Add Bcc to WooCommerce Emails
<?php
add_filter( 'woocommerce_email_headers', 'mycustom_headers_filter_function', 10, 2);
function mycustom_headers_filter_function( $headers, $object ) {
$email = array('new_order', 'new_booking');
if (in_array($object, $email)) {
$headers .= 'BCC: Admin <email@domain.com>' . "\r\n";
}
return $headers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment