perfect ! so I have to paste this:
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);
}
would you be so kind and tell us where in the functions.php to paste it ? Before or after what line ? So that we don’t mess up with your script
Thnx !