CC email to customer
These instructions are intended for those who are proficient in theme development. The relevant tutorials on developing & customising themes can be found on wordpress.org. If this is beyond you, we do offer a competitively-priced theme development service starting at £33 per hour. Please contact us for further details.
Add this function to your theme’s functions.php file to send a copy of the nicely formatted customer’s email to yourself.
add_action('eshop_send_customer_email','myeshop_copy_email',10,4);
function myeshop_copy_email($csubject, $this_email, $headers, $array){
$myemail='EMAILADDRESS';
wp_mail($myemail, $csubject, $this_email,$headers);
}

FlipFlop 3.0