New users (Customer) not getting email

When a new user (customer) registers with my site I am not receiving an email informing me of it. This seems strange as my other site using CS cart does.



Any ideas?



I get emails for orders and I have checked administration/company information and email addresses and everything looks fine.



Many thanks for any help.

I have the same problem. Does anyone know what to check?



Thanks,

same issue here…any help?

K, my crack at this:



fn.users.php in /core



about line 1185 in 2.1



says:



} else {

fn_send_mail($user_data['email'], Registry::get('settings.Company.company_users_department'), 'profiles/update_profile_subj.tpl', 'profiles/update_profile.tpl', '', $lang_code);

}







Add another line with the copy of fn_send_mail… below, this will DOUBLE the email. However, now change $user_data['email'] to 'youremail@myemail' (keep quotes), it should look like this then:



} else {

fn_send_mail($user_data['email'], Registry::get('settings.Company.company_users_department'), 'profiles/update_profile_subj.tpl', 'profiles/update_profile.tpl', '', $lang_code);



fn_send_mail(youremail@myemail.com, Registry::get('settings.Company.company_users_department'), 'profiles/update_profile_subj.tpl', 'profiles/update_profile.tpl', '', $lang_code);



}



Maybe in $user_data there is a field with admin email, I don't know…



This will send one email to the user, another copy to you. You might want to add new TPLs for the body and subject to have that email that you will get different than the user, say, if you want to highlight different fields…