メールIDで顧客の情報を取得したいので、コントローラーにコンテンツを含むメソッドを作成します。
public function showAction(){
$customer_email = "abc@mail.com";
$customer = Mage::getModel("customer/customer");
$customer->setWebsiteId(Mage::app()->getWebsite()->getId());
$customer->loadByEmail($customer_email);
echo $customer->getId();
echo $customer->getFirstName();
echo $customer->getEmail();
}
しかし、実行するとnull値が返されるのですが、理由がわかりません. 私を助けてください