Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save torbentschechne/bfb2be3ab9bc36e6e2487966e149b707 to your computer and use it in GitHub Desktop.
Save torbentschechne/bfb2be3ab9bc36e6e2487966e149b707 to your computer and use it in GitHub Desktop.
Prevent e-Mails from being sent out
function childtheme_no_emails( &$phpmailer ) {
// Empty out the values that may be set
$phpmailer->ClearAllRecipients();
$phpmailer->ClearAttachments();
$phpmailer->ClearCustomHeaders();
$phpmailer->ClearReplyTos();
}
add_action( 'phpmailer_init', 'childtheme_no_emails', 99, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment