Skip to content

Instantly share code, notes, and snippets.

@WProbot
Forked from Rarst/wp-email-log.php
Created March 10, 2021 13:52
Show Gist options
  • Select an option

  • Save WProbot/420a069b40adcd2ada188f2dd2aaecab to your computer and use it in GitHub Desktop.

Select an option

Save WProbot/420a069b40adcd2ada188f2dd2aaecab to your computer and use it in GitHub Desktop.
A simple mu–plugin snippet for overriding and logging WP emails in development.
<?php
class R_Mailer {
function Send() {
error_log( wp_debug_backtrace_summary() );
}
}
add_action( 'phpmailer_init', function( &$mailer ) {
$mailer = new R_Mailer();
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment