Skip to content

Instantly share code, notes, and snippets.

@hostz-frank
hostz-frank / functions.php
Created February 18, 2018 11:19
Copy to sender via Divi's contact form
<?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;
}