jruzafa
5/1/2015 - 9:08 AM

Check if customer already exist or not #php #magento

Check if customer already exist or not #php #magento

// http://ka.lpe.sh/2012/07/26/magento-check-if-customer-already-exist-or-not/

protected function _customerExists($email, $websiteId = null)
{
    $customer = Mage::getModel('customer/customer');
    if ($websiteId) {
        $customer->setWebsiteId($websiteId);
    }
    $customer->loadByEmail($email);
    if ($customer->getId()) {
        return $customer;
    }
    return false;
}