Effectuer une action lorsque l’envoi d’une notification Gforms ne fonctionne pas PHP.

PHP
                    <?php
function undfnd_send_email_failed( $error, $details, $entry ) {
    $to      = 'user@example.com'; // Change this to your email address.
    $subject = 'Notification failed!';
    $body    = "Notification email '$details[subject]' for entry #$entry[id] failed.";
    wp_mail( get_option('admin_email'), "Une erreur s‘est produite sur le site", "Erreur lors de l‘envoi de la notification pour l‘entrée #$entry[id]");
},10,3 );
add_action( 'gform_send_email_failed', 'undfnd_send_email_failed');