我使用phpmailer在网站上提交表单。它作为一个函数加载,然后每个页面根据需要调用它。
我想要做的是将" $添加到"来自数据库的地址,而不是硬编码。我是网站管理员/设计师,并且能够维护它,但无法找到任何文档/维基来概述这可能如何工作。
我的脚本如下所示:
$to = 'info@website.com';
$from = 'info@website.com';
$subject = 'RSVP From Website';
$cc = '';
$bcc = '';
$message = $given['eventName'];
$message .= '<p><strong>Name:</strong><br />'.to_html($given['name']).'</p>'."\n";
$message .= '<p><strong>Email:</strong><br />'.to_html($given['email']).'</p>'."\n";
$message .= '<p><strong>Company:</strong><br />'.to_html($given['company']).'</p>'."\n";
$message .= '<p><strong>Phone:</strong><br />'.to_html($given['phone']).'</p>'."\n";
$message .= '<p><strong># Attending:</strong> <br/>'.to_html($given['attending']).'</p>'."\n";
... and so on
在前端回显收件人的常规语法如下所示:
'.to_html($event[$recipient]).'
所以&#34; $ to&#34; woudl是这样的:
$to = ''.to_html($recipient).'';
我知道脚本没有将收件人传递到phpmailer脚本。我只是不知道如何写这一行。