Skip to content

Instantly share code, notes, and snippets.

@lkoudal
Forked from strangerstudios/test_wp_mail.php
Created July 31, 2016 06:47
Show Gist options
  • Select an option

  • Save lkoudal/9dbc8927f983d37dd2f93b46a01f386e to your computer and use it in GitHub Desktop.

Select an option

Save lkoudal/9dbc8927f983d37dd2f93b46a01f386e to your computer and use it in GitHub Desktop.
Help Debug wp_mail in WordPress
function test_wp_mail($args)
{
$debug = "<pre>" . var_export($args, true) . "</pre>";
wp_die($debug);
}
add_filter('wp_mail', 'test_wp_mail');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment