Skip to content

Instantly share code, notes, and snippets.

@ddbs
Forked from kloon/functions.php
Created March 22, 2014 23:52
Show Gist options
  • Save ddbs/9716253 to your computer and use it in GitHub Desktop.
Save ddbs/9716253 to your computer and use it in GitHub Desktop.
WooCommerce CC all emails
<?php
add_filter('woocommerce_email_headers', 'woo_cc_emails' );
function woo_cc_emails() {
return 'Bcc: youremail@yourdomain.com' . "\r\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment