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.
includes/Controllers/EntryController.php
Basic Usage
add_action( 'formcierge_entry_completed', function ( $entry_id, $form_id ) {
my_send_completion_email( $entry_id );
}, 10, 2 );