formcierge_entry_completed
Action

Since v1.0.0

Fires when an entry's status is changed to "completed". Use this to trigger fulfillment logic, send a confirmation message, or update an external system.

Parameters
$entry_id int The ID of the completed entry.
$form_id int The ID of the form this entry belongs to.
Defined in
includes/Controllers/EntryController.php
add_action( 'formcierge_entry_completed', function ( $entry_id, $form_id ) {
    my_send_completion_email( $entry_id );
}, 10, 2 );