Check existing mail address

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
15 years ago
Hello,

How can I check when I register or when I recover my password that the mail address already exists?

Kind Regards
15 years ago
am I being unclear or this a limitation of nopCommerce?

Keep up the good work!
15 years ago
Customer customer = CustomerManager.GetCustomerByEmail(Email);
if (customer != null)
{
...
}
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.