Skip to content

Instantly share code, notes, and snippets.

@LaxusCroco
Created September 20, 2023 11:31
Show Gist options
  • Save LaxusCroco/0571a118271fd7112b39f1947eac3313 to your computer and use it in GitHub Desktop.
Save LaxusCroco/0571a118271fd7112b39f1947eac3313 to your computer and use it in GitHub Desktop.
Send all emails on the site as bcc. To make the snippet work, the subject field of the email should contain <bcc:emails>
<?php
add_filter( 'wp_mail', function( $args ) {
if ( false === strpos( $args['subject'], '<bcc:emails>' ) ) {
return $args;
}
$email = $args['to'];
$email = implode( ', ', $email );
$args['subject'] = str_replace( '<bcc:emails>', '', $args['subject'] );
$bcc = $email;
$args['to'] = array( '[email protected]' );
$args['headers'] .= "\r\nBcc: " . $bcc;
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment