Magento “Forgot Password” email sent in wrong language

前端 未结 8 1050
暗喜
暗喜 2021-01-19 10:34

I have a Magento site with multiple languages. I have setup the language packs and everything seems to translate properly on the website. Also the transactional e-mails are

8条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-19 10:50

    In the below file Mage/Customer/Model/Customer.php

    In sendPasswordResetConfirmationEmail function() change the

    $storeId = $this->getStoreId();

    to

    $storeId = Mage::app()->getStore()->getStoreId();

    Thanks

提交回复
热议问题