Skip to content

Instantly share code, notes, and snippets.

@KustomDeveloper
Created March 24, 2021 15:21
Show Gist options
  • Save KustomDeveloper/ed851e2543625661ff5b05abdafee26e to your computer and use it in GitHub Desktop.
Save KustomDeveloper/ed851e2543625661ff5b05abdafee26e to your computer and use it in GitHub Desktop.
CF7 Error Notifications
/*
* Send Notification if a CF7 Form fails
*/
function cf7_error_notifications() { ?>
<script type="text/javascript">
document.addEventListener( 'wpcf7mailfailed', function( event ) {
<?php
wp_mail( 'youremail@gmail.com', 'Form Failed', 'CF7 Form failed to send', array('Content-Type: text/html; charset=UTF-8'));
?>
}, false );
</script>
<?php
}
add_action( 'wp_footer', 'cf7_error_notifications' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment