Skip to content

Instantly share code, notes, and snippets.

@jack-arturo
Created September 13, 2018 16:22
Show Gist options
  • Select an option

  • Save jack-arturo/f8f2f871cdf79ba51a93032eeefa9d2f to your computer and use it in GitHub Desktop.

Select an option

Save jack-arturo/f8f2f871cdf79ba51a93032eeefa9d2f to your computer and use it in GitHub Desktop.
Send an email notification when an API error is encountered
<?php
function wpf_email_notify( $timestamp, $level, $user, $message, $source, $context ) {
if( $level == 'error' ) {
wp_mail( 'youremail@example.com', 'WP Fusion API Error', 'Error message: ' . $message . ' for user ID ' . $user );
}
}
add_action( 'wpf_log_handled', 'wpf_email_notify', 10, 6 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment