我已尝试过所有内容,但我似乎无法添加功能,以便电子邮件显示在我的收件箱中,就好像来自用户的电子邮件而不是我的主机名。
我已经尝试添加标头属性,但它似乎仍无效。
以下是代码:
<?php
/* Set e-mail recipient */
$myemail = "julia@hotmail.com";
/* Check all form inputs using check_input function */
$email = check_input($_POST['email']);
/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("E-mail address not valid");
}
/* Let's prepare the message for the e-mail */
$message = "
The email below would like to be added to the mailing list.
E-mail: $email
";
// create email headers
$headers = 'From: '.$email."\r\n".
'Reply-To: '.$email."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
/* Send the message using mail() function */
mail($myemail, $subject, $message);
/* Redirect visitor to the thank you page */
header('Location: trial2.html');
exit();
/* Functions we used */
function check_input($data, $problem='')
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
show_error($problem);
}
return $data;
}
function show_error($myError)
{
?>
<html>
<body>
<p>Please correct the following error:</p>
<strong><?php echo $myError; ?></strong>
<p>Hit the back button and try again</p>
</body>
</html>
<?php
exit();
}
?>
谢谢!
答案 0 :(得分:0)
从这里取$headers
:
@mail($email_to, $email_subject, $email_message, $headers);
并把它放在这里:
/* Send the message using mail() function */
mail($myemail, $subject, $message);
然后删除第一行(从我想到的地方复制)
你应该留下
// create email headers
$headers = 'From: '.$email."\r\n".
'Reply-To: '.$email."\r\n" .
'X-Mailer: PHP/' . phpversion();
/* Send the message using mail() function */
mail($myemail, $subject, $message, $headers);
注意:验证电子邮件地址的正则表达式会在myname@example.co.uk
或myname@email.example.com
等地址失败。请改用PHP的filter_var
。
第二个注意事项:即使你让它工作,你的ISP也可以阻止任何看起来不是来自其服务器上的电子邮件帐户的邮件,因此邮件将不会被传递无论如何。最好设置一个虚拟帐户,如webform@mydomain.com
(使用您的实际域名),将其用作发件人地址,并在邮件正文中包含用户电子邮件。