Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kimcoleman/5641bb9f25ca1b47d35fef7aecf78eea to your computer and use it in GitHub Desktop.
Save kimcoleman/5641bb9f25ca1b47d35fef7aecf78eea to your computer and use it in GitHub Desktop.
BCC an additional email on the Member Invoice emails
<?php
/*
* BCC an additional email on the Member Invoice emails
*/
function my_pmpro_email_headers_bcc_on_invoice_email( $headers, $email ) {
if ( strpos( $email->template, 'invoice' ) !== false ) {
//add bcc
$headers[] = "Bcc:" . "[email protected]";
}
return $headers;
}
add_filter( 'pmpro_email_headers', 'my_pmpro_email_headers_bcc_on_invoice_email', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment