Guest User

Untitled

a guest
Dec 17th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Send copy to Divi's contact form sender.
  5. */
  6. add_filter( 'et_contact_page_headers', 'change_et_contact_page_headers', 10, 3 );
  7. function change_et_contact_page_headers( $headers, $contact_name, $contact_email ) {
  8. $headers[] = 'Cc: ' . $contact_email;
  9. return $headers;
  10. }
Add Comment
Please, Sign In to add comment