Skip to content

Instantly share code, notes, and snippets.

@kloon
Created February 13, 2013 08:25
Show Gist options
  • Save kloon/4943074 to your computer and use it in GitHub Desktop.
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: youremail@yourdomain.com' . "\r\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment