我的在线联系表单由PHP正确提交,除非有人进入@gmail

时间:2014-08-12 06:34:07

标签: php forms email

我的在线联系表单正确提交。但是,当有人输入@gmail.作为其电子邮件地址的一部分时,提交的表单不会发送给我。 令人困惑的是,如果输入了@xgmail.@gmailx.@gmai.,则提交的表单到达。它直接或通过电子邮件客户端,收件箱或其他方式到达hotmail帐户或gmail地址或公司地址。无论是使用Firefox,Chrome还是IE,都是一样的。 我请朋友们为我尝试同样的结果。

问题只是在电子邮件表单字段中输入@gmail.

怎么可能?

contact.html文件:

<div>
<form action="contact.php" method="post">
    <div>
        <span>Email: (required)</span>
        <label>
            <input placeholder="Please enter your email address" type="email" name="email" required>
        </label>
    </div>
</form>
</div>

contact.php文件:

<?php
if(isset($_POST['email']))
{ 

$email_to = "forms@archiveambition.com.au";
$email_subject = "Message to Archive Ambition"; 

function died($error)
{   

echo "

// error message code

";
die();
}

if( !isset($_POST['first_name']) ||
!isset($_POST['last_name']) ||
!isset($_POST['email']) ||
!isset($_POST['telephone']) ||
!isset($_POST['comments']))
{
died('We are sorry, but there appears to be a problem with the form you submitted.'); 
}
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$email_from = $_POST['email'];
$telephone = $_POST['telephone'];
$comments = $_POST['comments'];

$error_message = "";

//EMAIL VALIDATE
$email_exp = "/^[A-Z0-9._-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i";
if(!preg_match($email_exp,$email_from))
{
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
}

//FIRST NAME
$string_exp = "/^[a-z.']+$/i";
if(!preg_match($string_exp,$first_name))
{
$error_message .= 'The First Name you entered does not appear to be valid.<br />';
}

//MESSAGE COMMENTS
if(strlen($comments) < 2)
{
$error_message .= 'The Comments you entered do not appear to be valid.<br />';
}

if(strlen($error_message) > 0)
{
died($error_message);
}
$email_message = "\nMessage details: \n\n";

function clean_string($string)
{
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}

$email_message .= "First name: ".clean_string($first_name)."\n";
$email_message .= "Last name: ".clean_string($last_name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Telephone: ".clean_string($telephone)."\n";
$email_message .= "Comments: ".clean_string($comments)."\n";


// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers); 
?>

Thank you.<br />
Your message has been sent.<br />

<?php
}
?>

感谢。

1 个答案:

答案 0 :(得分:0)

有些服务器很挑剔他们将从谁发送邮件。我有经验,当试图使用非托管地址时,爸爸服务器不发送邮件。

而不是来自$_POST['email']的电子邮件来自no-reply@yourdomainname,并在正文中包含来自电子邮件的内容供您参考。

我知道这意味着你不能直接回复电子邮件,但有时就是这样。