我正在尝试使用以下代码发送恢复电子邮件。 但它从不发送电子邮件?有什么建议吗? 我正在使用1.9版magento。
if ($customer->getId())
{
try
{
$newResetPasswordLinkToken = Mage::helper('customer')->generateResetPasswordLinkToken();
$customer->changeResetPasswordLinkToken($newResetPasswordLinkToken);
$customer->save();
$customer->sendPasswordResetConfirmationEmail();
}
catch (Exception $exception)
{
}
}
答案 0 :(得分:0)
我安装了Postfix邮件服务器。我在crontab -e中添加了以下行 * * * * * sh /var/www/html/cron.sh 然后它工作正常。