Skip to content

Instantly share code, notes, and snippets.

View davevsdave's full-sized avatar

DaveVSDave davevsdave

View GitHub Profile
@davevsdave
davevsdave / wpcf7_davevsdave_dynamic_email_based_on_dropdown.php
Last active March 24, 2021 03:08
Wordpress | Contact Form 7 | Dynamic Email Based on Dropdown Selection
add_filter( 'wpcf7_before_send_mail', 'davevsdave_dynamic_email_based_on_dropdown' );
function davevsdave_dynamic_email_based_on_dropdown( $contact_form ) {
//Get the form ID
$form_id = $contact_form->id();
//If it's our form with the select dropdown, let's do something...
if( $form_id == 9487 ) {
//Get the dorpdown value - change "regarding" to the name of your select dropdown menu