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