Skip to content

Instantly share code, notes, and snippets.

@michaeldoye
Last active August 29, 2015 14:23
Show Gist options
  • Save michaeldoye/0802d2d0bb5074c7f904 to your computer and use it in GitHub Desktop.
Save michaeldoye/0802d2d0bb5074c7f904 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'woocommerce_email_headers', 'add_bcc_all_emails', 10, 2);
function add_bcc_all_emails($headers, $object) {
$headers = array();
$headers[] = 'Bcc: Name <me@email.com>';
$headers[] = 'Content-Type: text/html';
return $headers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment