this how i did it, load customer array data by email
$email = “[email protected]”;
$customer = Mage::getModel(“customer/customer”);
$customer->setWebsiteId(Mage::app()->getWebsite()->getId());
$customer->loadByEmail($email);
/*—print the object array–*/
print_r($customer->getData());
Be First to Comment