ok. Resolved.
add this to functions.php
add_action(‘eshop_send_customer_email’,’myeshop_copy_email’,10,4);
function myeshop_copy_email($csubject, $this_email, $headers, $array){
$myemail=’MYEMAILADDRESS’;
wp_mail($myemail, $csubject, $this_email,$headers);
}
I can receive comment notification email. Not still can’t receive order form email.
probably web hosting issue