0

谈到 PHP,我是一个真正的菜鸟,但这是我的问题 -

“发件人地址”的形式为 rittehqkxm@dedi96.cpt1.host-h.net,这会导致 a) 发送失败通知 b) 无法单击“回复”,因为发件人地址不是完成该邮件的人的地址形式。

这是我的代码任何人都可以指出为什么会发生这种情况以及如何解决它?

非常感谢你

<?php
/* Set e-mail recipient */
$myemail = "info@ritter-accountants.co.za";

/* Check all form inputs using check_input function */
$name = check_input($_POST['name'], "Enter your name");
$subject = check_input($_POST['subject'], "Enter a subject");
$email = check_input($_POST['email']);
$message = check_input($_POST['message'], "Write your message");

/* 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 = "

Name: $name
E-mail: $email
Subject: $subject

Message:
$message

";

/* Send the message using mail() function */
mail($myemail, $subject, $message);

/* Redirect visitor to the thank you page */
header('Location: thanks.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();
}
?>

和 HTML

<form class="email" action="mailer.php" method="post">
                        <p align="center"><span class="style27"><strong>Name:</strong></span></p>
                        <div align="right"><span class="style21 link_title"><strong>
                        <input style="width:50%;" type="text" name="name" />
                        </strong></span>
                        </div>
                        <p align="center"><span class="style27"><strong>E-mail:</strong></span></p>
                        <div align="right"><span class="style21 link_title"><strong>
                        <input style="width:50%;" type="text" name="email" />
                        </strong></span>
                        </div>
                        <p align="center"><span class="style27"><strong>Subject:</strong></span></p>
                        <div align="right"><span class="style21 link_title"><strong>
                        <input style="width:50%;" type="text" name="subject" />
                        </strong></span>
                        </div>
                        <p align="center"><span class="style27"><strong>Message:         </strong></span></p>
                        <div align="right"><span class="style21 link_title"><strong>
                          <textarea style="width:50%;"= name="message"></textarea>
                        </p>
                        <input class="send" type="submit" value="Send">
                        </strong></span>
                        </div>
                      </form>
4

1 回答 1

1

您的代码未设置发件人电子邮件,因此默认 sendmail(或从您的服务器发送邮件的任何内容)用户用于发件人标头。

您可以通过使用第四个参数将标题附加到对 PHP 的邮件函数的调用来解决此问题。

PHP 邮件文档的注释提供了一个关于如何完成此操作的简单示例:

$headers   = array();
$headers[] = "MIME-Version: 1.0";
$headers[] = "Content-type: text/plain; charset=iso-8859-1";
$headers[] = "From: Sender Name <sender@domain.com>";
$headers[] = "Bcc: JJ Chong <bcc@domain2.com>";
$headers[] = "Reply-To: Recipient Name <receiver@domain3.com>";
$headers[] = "Subject: {$subject}";
$headers[] = "X-Mailer: PHP/".phpversion();

mail($to, $subject, $email, implode("\r\n", $headers));

我必须补充一点,即使在您的情况下您对收件人邮件进行了硬编码,将某人在您的表单中键入的地址设置为发件人地址也不是一个好习惯。

一个好的做法是使用系统地址作为发件人,并使用通过表单提供的电子邮件填写回复标题(上面的链接也描述了这一点)。通过这种方式,您可以查看消息的真正来源,并轻松回复实际与您交谈的人。

如果通过表单输入收件人(例如“告诉朋友”功能),则必须使用系统地址作为发件人,因为在某些国家/地区,如果某些 X 人向某些人发送电子邮件,您可能会遇到法律问题Y 一个使用 Z 的地址作为发件人(身份盗窃)。

于 2013-08-08T12:55:44.477 回答