vfbp_after_email

Description

Action that fires after all emails have been processed.

Passes the Entry ID and the Form ID.

Parameters

$entry_id
(int) (required) The entry ID
Default: the form ID

$form_id
(int) (optional) The form ID
Default: the form ID

Examples

add_action( 'vfbp_after_email', 'filter_vfbp_after_email', 10, 2 );
 
function filter_vfbp_after_email( $entry_id, $form_id ) {
    // execute some custom code here
}