Last active
October 29, 2021 13:05
-
-
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 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 ); | |
} |
What is the differents with your other code: https://gist.github.com/hostz-frank/2391d6a8d5ffb6fb965a8446198b90a2 ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For me it doens't work :(
For me not :(, I put exactly the same in the recipient field