在我的 php 文件中发送电子邮件我想使用 smarty 配置变量但是目前我必须削减它们
这是 PHP 文件的一部分:
PHP
$messagecontent .= "
<p>bla bla bla bla <b> $username </b> xxxx <b> $myitemname </b>
<p>When you receive xxx go to xxxx</p>
feel free to <a href=".WEBSITEHOST."contact-us.php>contact us </a> at any time.<br />";
目前我正在创建不同的 smarty 配置变量,如下所示:
$messagecontent .= $smarty->getConfigVariable('welcomemail1'). $username $smarty->getConfigVariable('welcomemail2'). $myitemname." </b>
<p>When you receive xxx go to xxxx</p>
feel free to <a href=".WEBSITEHOST."contact-us.php>contact us </a> at any time.<br />";
我可以以某种方式一次完成所有事情吗(在 smarty 配置文件中包含 php vars)
所以: $messagecontent =$smarty->getConfigVariable('welcomemail');
{#welcomemail#} 将如何包含这些内容?例如welcomemail="??"