如何在opencart 2.0.1.1中的奖励积分通知电子邮件中应用CSS样式?

时间:2016-09-05 23:28:20

标签: html css email opencart2.x

当客户获得奖励积分时,他会收到电子邮件通知。 默认电子邮件仅包含以下行:

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,但它不起作用。 我不知道如何应用我想要的样式。有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

您需要添加自己的html标签& css&语言文件中的css类。

例如:

$_['text_reward_received']      = 'You have received %s <span style="font-size:15px; color:red;">Reward Points</span>!';
$_['text_reward_total']         = 'Your <span class="mystyle">total number</span> of reward points is now %s.';