Skip to content

Instantly share code, notes, and snippets.

@nielslange
Last active February 18, 2017 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nielslange/b516660263633fe37796fd8425bb6e3d to your computer and use it in GitHub Desktop.
Save nielslange/b516660263633fe37796fd8425bb6e3d to your computer and use it in GitHub Desktop.
Forward all WC email notifications
<?php
//* Forward all WC email notifications
add_filter( 'woocommerce_email_headers', 'nl_forward_wc_email_notifocations', 10, 2);
function nl_forward_wc_email_notifocations($headers, $object) {
$headers = array();
$headers[] = 'Bcc: Niels Lange <info@nielslange.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