在我们开始之前,我是一个完整的新手!
我使用 PHP 为我创建了一个联系表单。我已将代码嵌入到我的电子邮件 html 中,并更改了 php 文件中的电子邮件地址。
创建它的人说它在他们的服务器上运行良好,并向我发送了电子邮件以证明它确实有效。
单击提交后,电子邮件通过但它是空白的,有什么想法吗?
PHP 代码(文件名simple-mailprocess_v2
):
<?
$to= ('info@cre8ivo.co.uk');
$subjectline= ('Website - form enquiry - Speak to a private medical insurance specialist');
$thanks=('thankyou.html');
$return=('Location:'.$thanks);
if (sizeof($_POST)) {
$body = "";
while(list($key, $val) = each($HTTP_POST_VARS)) {
$body .= "$key: \n $val \n\n";
// Check if all fields have been filled in
if(empty($val)) {
echo ("<b><li>either one or more required fields have not been completed. Go <a href='javascript: history.go(-1)'>Back</a> and try again</li></b>");
exit();
}
}
}
// Secure the headers
$security = "From: \r\n";
$security .= "Reply-To: \r\n";
$security .= "Return-Path: \r\n";
$security .= "CC: \r\n";
$security .= "BCC: \r\n";
// Send the email.
if ( mail($to,$subjectline,$body,$security) ) {
header($return);
} else {
echo "The email has failed!";
}
?>
任何帮助深表感谢!
任何更多信息需要然后我会提供,不确定它需要什么对不起!
非常感谢,简。