Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Created March 25, 2014 16:33
Show Gist options
  • Select an option

  • Save strangerstudios/9765777 to your computer and use it in GitHub Desktop.

Select an option

Save strangerstudios/9765777 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