PHP警告:无法修改标题信息 - 已经发送的标题(输出从第29行的.......开始)

时间:2013-10-18 18:23:49

标签: php html sendmail html-email web-hosting

每次我尝试点击发送此错误都会出现。 我收到了我的电子邮件中的消息,但问题是它带我到错误页面而不是带我到我指定的页面。

这是我的代码:

<?php 
$errors = '';
$myemail = 'info@cherry-ao.com';//<-----Put Your email address here.

if(empty($_POST['name'])  ||  empty($_POST['email']) || empty($_POST['message']))
{
    $errors .= "\n Error: all fields are required";
}

$name = $_POST['name']; 
$email_address = $_POST['email']; 
$message = $_POST['message']; 

if (!preg_match("/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/i", $email_address))
{
    $errors .= "\n Error: Invalid email address";
}

if( empty($errors))
{
    $to = $myemail; 
    $email_subject = "Contact form submission: $name";
    $email_body = "You have received a new message. Here are the details:\n Name: $name \n Email: $email_address \n Message \n $message"; 
    $headers = "From: $myemail\n"; 
    $headers .= "Reply-To: $email_address";
    mail($to,$email_subject,$email_body,$headers);
    //redirect to the 'thank you' page
    header('Location: thank_you.html');
} 

echo nl2br($errors);
?>

没有空格! 我用Hostgator托管我的网站

1 个答案:

答案 0 :(得分:2)

如果您已将一些数据放入屏幕,则无法编写标题。

在输出到用户的任何内容之前,标题必须位于代码的顶部