Skip to content

Instantly share code, notes, and snippets.

View michaeldoye's full-sized avatar

Michael Doye michaeldoye

View GitHub Profile
<?php
add_filter( 'woocommerce_email_headers', 'add_bcc_all_emails', 10, 2);
function add_bcc_all_emails($headers, $object) {
$headers = array();
$headers[] = 'Bcc: Name <[email protected]>';
$headers[] = 'Content-Type: text/html';