我目前正在我的网站上创建一个不错的联系表单,但在使 html 模板正常工作时遇到了一些问题。
模板本身是一个包含经过验证的 HTML 的 .txt 文件。在这个 html 中有一个标签
[email_content].
此标签应替换为从我网站上的联系表格生成的电子邮件内容:
<form class="form-horizontal" id="contact_form" name="contact_form">
<div id="form_name_ctrl_group" class="control-group">
<input class="input-xlarge" type="text" id="inputName" name="inputName" placeholder="Name">
</div>
<div class="control-group">
<input class="input-xlarge" type="text" id="inputEmail" name="inputEmail" placeholder="Email">
</div>
<div class="control-group">
<textarea class="input-xlarge" id="inputMessage" name="inputMessage" placeholder="Insert message here..."></textarea>
</div>
<button type="submit" class="btn btn-sky">Send</button>
<button type="button" class="btn btn-sky">Reset</button>
</form>
提交后,此表单使用 jQuery validate 进行验证,然后使用 serialize 函数通过 jQuery ajax 提交。然后将序列化的数据发送到以下 php 函数以供使用:
<?php
function mailer_send($mailer_recipient, $mailer_subject, $mailer_message){
$mailer_headers = 'From: webmaster@example.co.uk' . "\r\n" .
'X-Mailer: PHP/' . phpversion() . "\r\n"
'MIME-Version: 1.0\r\n' . "\r\n"
'Content-Type: text/html; charset=ISO-8859-1\r\n';
mail($mailer_recipient, $mailer_subject, $mailer_message, $mailer_headers);
}
$name = $_POST['inputName'];
$email = $_POST['inputEmail'];
$message = strip_tags($_POST['inputMessage']);
$template = file_get_contents('email_templates/template.txt');
$template = str_replace('[email_content]',$message, $template);
mailer_send('enquiries@example.co.uk','Test Email',$template);
?>
如您所见,我试图将 html 模板中的标签 [email_content] 替换为用户在联系表单中输入的消息。然后应该使用该模板向我的电子邮件帐户发送电子邮件。我目前的问题是我实际上没有收到任何东西。
该脚本在没有模板部分的情况下工作(如果我在 mailer_send 中使用 $message)那么这里可能出了什么问题?
我的目录结构如下:
/fnc
mailer.php
/email_templates
template.txt
附加:我在服务器日志中收到以下错误消息:
[19-Jul-2013 13:00:43 UTC] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/username/public_html/example/fnc/mailer.php on line 5