Skip to content

Instantly share code, notes, and snippets.

@kilbot
Created February 1, 2015 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kilbot/1629c80ff1443dc5e7fa to your computer and use it in GitHub Desktop.
Save kilbot/1629c80ff1443dc5e7fa to your computer and use it in GitHub Desktop.
Add to the theme functions.php
function log_all_emails($mail) {
error_reporting(0);
$log = new WC_Logger();
$log->add('woocommerce-pos', print_r($mail, true));
return $mail;
}
add_filter( 'wp_mail', 'log_all_emails' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment