如何在 prestashop 中更改电子邮件主题

问题描述 投票:0回答:2

我需要在 Prestashop 中更改电子邮件主题“我需要删除 [] 括号标点符号”

现在电子邮件是:[myshop_Name] 订单确认

我需要:myshop_Name 订单确认

我将非常感谢您的帮助

email gmail prestashop prestashop-1.7
2个回答
1
投票

我找到了解决方案: 通过删除括号 [] 编辑类下的 mail.php: $subject = '['.Configuration::get('PS_SHOP_NAME', null, null, $idShop).'] '.$subject;


0
投票

我知道它有点旧了,但是要在 Prestashop 中更改电子邮件主题(例如添加订单号),您可以使用带有钩子的简单模块:

hookActionEmailSendBefore
- 在模块内

在模块文件中使用类似这样的函数:

public function hookActionEmailSendBefore($params)
{
 if ($params['template'] == 'order_conf'  )
        {
            $reference = (string)$params['templateVars']['{order_name}'];
            $oderID = (string)$params['templateVars']['{id_order}'];
            $params['subject'] = $params['subject']." - ".$reference." (".$oderID.")";
        }

}

希望对某人有帮助

© www.soinside.com 2019 - 2024. All rights reserved.