nielslange
7/24/2016 - 10:10 AM

Forward all WC email notifications

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;
}