如何在opencart 2.0.1.1的语言文件中添加html?
How to add html in language file of opencart 2.0.1.1?
实际上我需要这样做
当客户获得奖励积分时,他会收到电子邮件通知。默认电子邮件仅包含以下行:
You have received 200 Reward Points!
Your total number of reward points is now 200.
我知道这段文字在
的语言文件中
/admin/language/english/mail/customer.php
$_['text_reward_received'] = 'You have received %s Reward Points!';
$_['text_reward_total'] = 'Your total number of reward points is now %s.';
我需要在与我的 opencart 商店相关的电子邮件通知上应用一些 css 样式。我尝试在此 customer.php 语言文件中添加 html 和 css,但它不起作用。我不知道如何应用我想要的样式。我需要知道我可以在模型文件中添加 html 吗??如果是那么怎么办?
我无法在语言文件中添加 html,因为在模型中,用于发送邮件的方法正在使用
$mail ->setText(html_entity_decode($message, ENT_QUOTES, 'UTF-8'));
我已将其更改为:
$mail ->setHtml(html_entity_decode($message, ENT_QUOTES, 'UTF-8'));
然后它允许我在语言文件中添加 html。
实际上我需要这样做 当客户获得奖励积分时,他会收到电子邮件通知。默认电子邮件仅包含以下行:
You have received 200 Reward Points!
Your total number of reward points is now 200.
我知道这段文字在
的语言文件中/admin/language/english/mail/customer.php
$_['text_reward_received'] = 'You have received %s Reward Points!';
$_['text_reward_total'] = 'Your total number of reward points is now %s.';
我需要在与我的 opencart 商店相关的电子邮件通知上应用一些 css 样式。我尝试在此 customer.php 语言文件中添加 html 和 css,但它不起作用。我不知道如何应用我想要的样式。我需要知道我可以在模型文件中添加 html 吗??如果是那么怎么办?
我无法在语言文件中添加 html,因为在模型中,用于发送邮件的方法正在使用
$mail ->setText(html_entity_decode($message, ENT_QUOTES, 'UTF-8'));
我已将其更改为:
$mail ->setHtml(html_entity_decode($message, ENT_QUOTES, 'UTF-8'));
然后它允许我在语言文件中添加 html。