jetpack_forms_response_email
jetpack_forms_response_email
Appears in: jetpack.12.2.1, jetpack.12.3, jetpack.12.5, jetpack.12.6, jetpack.12.6.1, jetpack.12.7.1, jetpack.12.8, jetpack.12.8.1, jetpack.12.9, jetpack.12.9.3, jetpack.13.0, jetpack.13.1.1, jetpack.13.1.3, jetpack.13.2, jetpack.13.2.1, jetpack.13.3.1, jetpack.13.5, jetpack.13.6, jetpack.13.7, jetpack.13.8, jetpack.13.8.1, jetpack.13.9.1, jetpack.14.0, jetpack.14.1, jetpack.14.2.1, jetpack.14.3, jetpack.14.4.1, jetpack.14.5, jetpack.14.6, jetpack.14.7, jetpack.14.8, jetpack.14.9.1, jetpack.15.0, jetpack.15.1, jetpack.15.1.1, jetpack.15.2, jetpack.15.3.1, jetpack.15.4, jetpack.15.5, jetpack.15.6
Hook Type: filter
Displaying hooks found in version: jetpack.15.6apply_filters('jetpack_forms_response_email') is found 1 times:
- /jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-email-renderer.php line 340
* @param array $compiled_form the form response to be filtered * @param int $feedback_id the ID of the feedback form * @param Contact_Form $form a copy of this object */ $updated_compiled_form = apply_filters( 'jetpack_forms_response_email', $compiled_form, $feedback_id, $form ); if ( $updated_compiled_form !== $compiled_form ) { // Filter was customized β use old rendering path for backward compat. $compiled_form = $updated_compiled_form; foreach ( $compiled_form as $key => $value ) { if ( ! is_array( $value ) || ! isset( $value['label'] ) ) { continue;