The contact-form-7 wpcf7 sendinblue collect parameters hook.
Published Date - July 22, 2023
$params = apply_filters(
'wpcf7_sendinblue_collect_parameters',
$params
);
$params
The following example is for adding a hook callback.
// define the wpcf7_sendinblue_collect_parameters callback
function custom_wpcf7_sendinblue_collect_parameters( $params ){
//custom code here
return $params
}
//add the action
add_filter('wpcf7_sendinblue_collect_parameters', 'custom_wpcf7_sendinblue_collect_parameters', 10, 1)
The filter is defined in the following location(s).
contact-form-7/modules/sendinblue/sendinblue.php
$params = apply_filters(
'wpcf7_sendinblue_collect_parameters',
$params
);