我需要获取产品简短说明,以便在订单确认电子邮件中单独显示。
有人可以帮助我吗?
谢谢
运行PS 1.7.5.0
答案 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 内容