Last active
February 21, 2025 21:41
-
-
Save hostz-frank/600733ddcdbecb70cb1a47b1ef87bca6 to your computer and use it in GitHub Desktop.
Send mail copy to users of Divi's contact form.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Send copy to Divi's contact form sender. | |
*/ | |
add_filter( 'et_contact_page_headers', 'change_et_contact_page_headers', 10, 3 ); | |
function change_et_contact_page_headers( $headers, $contact_name, $contact_email ) { | |
$headers[] = 'Cc: ' . $contact_email; | |
return implode( "\n", $headers ); | |
} |
Works like a charm: it should be a standard feature of Divi Contact Form!
Thank you very much Frank.
For me it doens't work :(
Works like a charm: it should be a standard feature of Divi Contact Form!
Thank you very much Frank.
For me not :(, I put exactly the same in the recipient field
What is the differents with your other code: https://gist.github.com/hostz-frank/2391d6a8d5ffb6fb965a8446198b90a2 ?
This solution does not work with Divi > 4.0. I created my own that uses the et_pb_contact_form_submit hook to accomplish the same thing. https://gist.github.com/connormesec/36f75e3e438ac5ad80812bb95f3f15a6
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@hostz-frank nope, didn't do the trick... too bad, it would be great to have such a simple solution!