Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要自定义“newsletter_subscr_success.html”电子邮件模板,并且需要将一些变量传递给它。
问题是我不知道它发送到哪里,所以我可以推送一些参数/变量。
我在哪里可以找到它?
如果您在控制器文件或模型或 model/observer.php 中有任何变量,其格式应为,
$emailTemplateVariables['any_string'] = "这是任意字符串";
现在,要将这个变量抓取到您的 newsletter_subscr_success.html 中,只需给出
<div>{{var any_string}}</div>