Skip to content

Instantly share code, notes, and snippets.

@kloon
Created February 13, 2013 08:25
Show Gist options
  • Select an option

  • Save kloon/4943074 to your computer and use it in GitHub Desktop.

Select an option

Save kloon/4943074 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: [email protected]' . "\r\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment