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 | |
/** | |
* Copy lines below into functions.php of your Divi child theme. | |
*/ | |
add_filter( 'et_contact_page_headers', 'mycopytosender', 10, 4 ); | |
function mycopytosender( $headers, $contact_name, $contact_email ) { | |
$headers[] = "Cc: \"{$contact_name}\" <{$contact_email}>"; | |
return $headers; | |
} |