WordPress :: Extra Theme :: Contact Page Template :: Send to another email address instead of admin email.
<?php
/* DON'T copy the first line (above) if your functions.php already has it.
* ---------------------------------------------------------------------- */
function my_et_extra_contact_page_email_to( $email ) {
return 'YOUR-EMAIL@YOURDOMAIN.COM';
}
add_action( 'extra_contact_page_email_to', 'my_et_extra_contact_page_email_to' );