当客户获得奖励积分时,他会收到电子邮件通知。 默认电子邮件仅包含以下行:
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,但它不起作用。 我不知道如何应用我想要的样式。有什么帮助吗?
答案 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.';