magento电子邮件以编程方式发送

时间:2018-04-12 13:14:56

标签: magento magento-1.9 reset-password

我正在尝试使用以下代码发送恢复电子邮件。 但它从不发送电子邮件?有什么建议吗? 我正在使用1.9版magento。

if ($customer->getId()) 
{
    try
    {
        $newResetPasswordLinkToken =  Mage::helper('customer')->generateResetPasswordLinkToken();
        $customer->changeResetPasswordLinkToken($newResetPasswordLinkToken);
        $customer->save();
        $customer->sendPasswordResetConfirmationEmail();
    }
    catch (Exception $exception) 
    {

    }
}

1 个答案:

答案 0 :(得分:0)

我安装了Postfix邮件服务器。我在crontab -e中添加了以下行 * * * * * sh /var/www/html/cron.sh 然后它工作正常。

相关问题