在订单确认电子邮件中添加产品简短说明-Prestashop 1.7

时间:2019-03-31 12:58:38

标签: prestashop prestashop-1.7

我需要获取产品简短说明,以便在订单确认电子邮件中单独显示。

有人可以帮助我吗?

谢谢

运行PS 1.7.5.0

1 个答案:

答案 0 :(得分:1)

您可以使用“ ActionEmailAddAfterContent ”钩子来添加/更新Prestashop中任何电子邮件的内容。

该钩子在Mail.php类中定义。

对于Prestashop 1.6:

Hook::exec('actionEmailAddAfterContent', array(
   'template' => $template,
   'template_html' => &$template_html,
   'template_txt' => &$template_txt,
   'id_lang' => (int)$id_lang
   ), null, true);

$template模板名称,例如order_conf

$template_html模板HTML 内容

相关问题