php php联系表中的回复地址
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/19007032/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
reply-to address in php contact form
提问by MajorKooter
I bought a simple website template with a php contact form. Everything works great with the one small exception of actually receiving the messages sent via the form. That is, the contact form would show a success message, but the message would never arrive.
我购买了一个带有 php 联系表格的简单网站模板。除了实际接收通过表单发送的消息的一个小例外,一切都很好。也就是说,联系表单会显示一条成功消息,但该消息永远不会到达。
After a long back and forth with my hosting service, I found out that in order to avoid spoofing they won't allow emails to be sent where the FROM address they don't host. That is, if a visitor to the site writes down his gmail/yahoo etc. in the form, I won't get it.
在我的托管服务来回反复后,我发现为了避免欺骗,他们不允许将电子邮件发送到他们没有托管的发件人地址。也就是说,如果该站点的访问者在表单中写下他的 gmail/yahoo 等,我将不会得到它。
They suggested using the email address hosted with them as the FROM address, and having the visitor's input email as the REPLY-TO address. This seems reasonable.
他们建议使用他们托管的电子邮件地址作为发件人地址,并将访问者的输入电子邮件作为回复地址。这似乎是合理的。
So I dug around (e.g. here: PHP reply-to error - comes with admin email not sender of contact formand php Contact Form on website and reply-to email)
所以我四处寻找(例如,这里: PHP 回复错误 - 带有管理员电子邮件,而不是网站上的联系表格和 php 联系表格的发件人以及回复电子邮件)
and the answers suggest something adding a headers component:
并且答案建议添加标题组件:
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
and also add it to
并将其添加到
mail($to, $subject, $message, $headers);
so that's what I did. $email is defined in this template as what the visitor's email, so what I did was:
所以这就是我所做的。$email 在此模板中定义为访问者的电子邮件,所以我所做的是:
$subject = "Contact Form: $name";
$message = "$message";
$headers = 'From: myemail@my_domain.com' . "\r\n" .
'Reply-To: $email' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
This is all nice and dandy but it still doesn't work well. Emails dogo through now, but the details are:
这一切都很好,但它仍然不能很好地工作。现在确实通过电子邮件,但详细信息是:
from: myemail@my_domain.com via servername.hosting_company.com
**reply-to: [email protected]_company.com**
to: myemail@my_domain.com
so, the reply to address is still not what the visitor left.
所以,对地址的回复仍然不是访问者留下的。
Can you help me with this? Don't know what else I can do.
你能帮我解决这个问题吗?不知道我还能做什么。
Many thanks!
非常感谢!
if anyone is interested, here's the full php file:
如果有人感兴趣,这里是完整的 php 文件:
<?php
// Clean up the input values
foreach($_POST as $key => $value) {
if(ini_get('magic_quotes_gpc'))
$_POST[$key] = stripslashes($_POST[$key]);
$_POST[$key] = htmlspecialchars(strip_tags($_POST[$key]));
}
// Assign the input values to variables for easy reference
$name = $_POST["name"];
$email = $_POST["email"];
$message = $_POST["message"];
// Test input values for errors
$errors = array();
if(strlen($name) < 2) {
if(!$name) {
$errors[] = "You must enter a name.";
} else {
$errors[] = "Name must be at least 2 characters.";
}
}
if(!$email) {
$errors[] = "You must enter an email.";
} else if(!validEmail($email)) {
$errors[] = "You must enter a valid email.";
}
if(strlen($message) < 10) {
if(!$message) {
$errors[] = "You must enter a message.";
} else {
$errors[] = "Message must be at least 10 characters.";
}
}
if($errors) {
// Output errors and die with a failure message
$errortext = "";
foreach($errors as $error) {
$errortext .= "<li>".$error."</li>";
}
die("<span class='failure'><h3>Sorry, The following errors occured:</h3><ol>". $errortext ."</ol><a href='contact.html' class='more'>Refresh Form</a></span>");
}
// --------------------------------------//
// Send the email // INSERT YOUR EMAIL HERE
$to = "myemail@my_domain.com";
// --------------------------------------//
$subject = "Contact Form: $name";
$message = "$message";
$headers = 'From: myemail@my_domain.com' . "\r\n" .
'Reply-To: $email' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
// Die with a success message
die("<span class='success'><h3>Successfully Sent!</h3> Your message is on its way, we will respond to you shortly.</span>");
// A function that checks to see if
// an email is valid
function validEmail($email)
{
$isValid = true;
$atIndex = strrpos($email, "@");
if (is_bool($atIndex) && !$atIndex)
{
$isValid = false;
}
else
{
$domain = substr($email, $atIndex+1);
$local = substr($email, 0, $atIndex);
$localLen = strlen($local);
$domainLen = strlen($domain);
if ($localLen < 1 || $localLen > 64)
{
// local part length exceeded
$isValid = false;
}
else if ($domainLen < 1 || $domainLen > 255)
{
// domain part length exceeded
$isValid = false;
}
else if ($local[0] == '.' || $local[$localLen-1] == '.')
{
// local part starts or ends with '.'
$isValid = false;
}
else if (preg_match('/\.\./', $local))
{
// local part has two consecutive dots
$isValid = false;
}
else if (!preg_match('/^[A-Za-z0-9\-\.]+$/', $domain))
{
// character not valid in domain part
$isValid = false;
}
else if (preg_match('/\.\./', $domain))
{
// domain part has two consecutive dots
$isValid = false;
}
else if(!preg_match('/^(\\.|[A-Za-z0-9!#%&`_=\/$\'*+?^{}|~.-])+$/',
str_replace("\\","",$local)))
{
// character not valid in local part unless
// local part is quoted
if (!preg_match('/^"(\\"|[^"])+"$/',
str_replace("\\","",$local)))
{
$isValid = false;
}
}
if ($isValid && !(checkdnsrr($domain,"MX") || checkdnsrr($domain,"A")))
{
// domain not found in DNS
$isValid = false;
}
}
return $isValid;
}
?>
回答by Brian Kinyua
Try changing this part of your code :
尝试更改这部分代码:
$subject = "Contact Form: $name";
$message = "$message";
$headers = 'From: myemail@my_domain.com' . "\r\n" .
'Reply-To: $email' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
To this :
对此:
$subject = "Contact Form: $name";
$message = "$message";
$headers = 'From: myemail@my_domain.com' . "\r\n" .
'Reply-To: ' . $email . "\r\n" .
'X-Mailer: PHP/' . phpversion();
Basically take out the $emailfrom inside the single quote and append it to that string
基本上从单引号中取出$email并将其附加到该字符串
回答by Houssin Boulla
Try to use the header like this:
尝试使用这样的标题:
$headers = array(
'From' => $from,
'To' => $to,
'Cci' => $bcc,
'Subject' => $subject,
'Reply-To' => $reply_to
);