Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created November 2, 2024 14:40
Show Gist options
  • Save stuartduff/40fa18aceae09adbed65209838ba1b05 to your computer and use it in GitHub Desktop.
Save stuartduff/40fa18aceae09adbed65209838ba1b05 to your computer and use it in GitHub Desktop.
CC Email into WooCommere Customer Invoice Email
function add_cc_to_invoice_email($headers, $email_id, $order) {
if ($email_id === 'customer_invoice') {
$cc_email = '[email protected]'; // Replace with the email you want to CC
$headers .= 'Cc: ' . $cc_email . "\r\n";
}
return $headers;
}
add_filter('woocommerce_email_headers', 'add_cc_to_invoice_email', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment