这是我的代码:
<?php
header('Content-type: text/plain; charset=utf-8');
$to = 'example@gmail.com';
$subject = 'Message to the site';
$realname = htmlspecialchars($_POST['realname']);
$email = htmlspecialchars($_POST['email']);
$msg = htmlspecialchars($_POST['msg']);
$headers = 'From: example@gmail.com' . "\r\n" .
'Reply-To: example@gmail.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $msg, $headers) or die("Error!");
echo 'Thank you! :)';
?>
有人可以解释一下 - 为什么这段代码不能正常工作?
我的意思是,当我点击按钮提交时,它会发送电子邮件,但我无法在其中加入$msg
,我不知道为什么。
答案 0 :(得分:0)
尝试添加:
$headers .= 'Content-type: text/html';
在$ header下添加此行,然后检查我希望这对您有用...