Contact Form 7 Tutorial Series (38/100). Prefer one article? Read the complete Contact Form 7 tutorial.
Short description
`wpcf7_before_send_mail` is a key integration point for CRM sync and custom abort rules.
before_send_mail example
add_action('wpcf7_before_send_mail', function ($contact_form, &$abort, $submission) {
// inspect $submission->get_posted_data();
// set $abort = true to stop mail if needed
}, 10, 3);