formcierge_after_form_notifications
Action
Since v1.0.0
Fires after all email notifications configured for a form have been sent. Use this when you need to run logic that depends on notifications having already been dispatched.
Parameters
$form_id
int
The ID of the submitted form.
$entry_id
int
The ID of the entry.
includes/Controllers/SubmissionController.php
Basic Usage
add_action( 'formcierge_after_form_notifications', function ( $form_id, $entry_id ) {
error_log( "Notifications sent for form $form_id, entry $entry_id" );
}, 10, 2 );