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