Skip to content

Instantly share code, notes, and snippets.

@dsebao
Last active March 7, 2018 14:26
Show Gist options
  • Save dsebao/e5089392060873a9afa7ec3b459f671a to your computer and use it in GitHub Desktop.
Save dsebao/e5089392060873a9afa7ec3b459f671a to your computer and use it in GitHub Desktop.
function action_wp_mail_failed($wp_error)
{
return error_log(print_r($wp_error, true));
}
// add the action
add_action('wp_mail_failed', 'action_wp_mail_failed', 10, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment