缺货通知电子邮件无法正常工作

out of stock's notification mail is not working

我正在使用 magento 1.8.1,但在缺货通知电子邮件中收到错误消息。我收到这种形式的邮件

 Hello Admin.'<br/>Customer'.wants to be notified when the below product is available in our inventory<br/><p>Item Name :</p><p>SKU :</p><p> Search Code :</p><p>Bar Code :</p>

没有显示任何关于产品的详细信息。

当我签到时\app\code\local\Adodis\Pincodecheck\controllers

代码是:

     $to = "sales@abcd.com";
     $subject = "Product in demand";
    $txt = "Hello Admin.'<br/>Customer'.".$pincode."wants to be notified when the below product is available in our inventory<br/><p>Item Name :".$name."</p><p>SKU :".$sku."</p><p> Search Code :".$scode."</p><p>Bar Code :".$bcode."</p>";


     mail($to,$subject,$txt);

你能告诉我在这段代码中需要修改什么才能收到正确的邮件吗

添加这些 headers 并传递它:

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

$to = "sales@abcd.com";
     $subject = "Product in demand";
    $txt = "Hello Admin.'<br />Customer'.".$pincode."wants to be notified when the below product is available in our inventory<br /><p>Item Name :".$name."</p><p>SKU :".$sku."</p><p> Search Code :".$scode."</p><p>Bar Code :".$bcode."</p>";


     mail($to,$subject,$txt, $headers);