繁体   English   中英

Ajax / php联系表格不时发送空白电子邮件

[英]Ajax/php contact form sending blank emails from time to time

好吧,我有这张联系表,可以发送空白电子邮件。 但是我做了一些测试,但是这并没有发生在我身上。 我认为,发生这种情况的唯一方法是直接访问.php文件。 如果没有,我不知道可能是什么问题。 该表格不允许您发送空白电子邮件。 如果这种情况持续发生,我也将在php文件中添加一个验证,但是直到我找出问题所在,我才不想忽略此消息。

这是HTML

<form name="contactForm" id="contactForm" method="post" action="/contactEngine.php" onsubmit="return validateForm()">
        <input title="Input name" type="text" name="Name" id="Name" placeholder="Nombre:" required="">
        <input title="Input email" placeholder="Email:" type="email" name="Email" id="Email" required="">
        <input type="text" placeholder="Subject:" name="Subjet" id="Subjet">
        <textarea title="Input message" placeholder="Mensaje:" name="Message" rows="20" cols="20" id="Message" required=""></textarea>
        <input title="Input result" placeholder="25 + 25 = ?" type="text" name="Captcha" id="Captcha" required="">
        <p id="wrongCaptcha"> Try again </p> 
        <input type="submit" name="submit" value="send" class="submit-button"> 
</form>

这是JS

function validateForm(e) {
e.preventDefault();
var x = document.forms["contactForm"]["Captcha"].value; 
if (x != 50) {//if captcha is wrong
    $("#Captcha").addClass("wrongCaptchaEntered");
    $("#Captcha").css("animation-name" , "none");
    setTimeout (function(){
        $("#Captcha").css("animation-name" , "changeBorder");
    },100);
    if ($("#wrongCaptcha").css("display") == "none"){
        $("#wrongCaptcha").slideDown();
    }   
}
else {  //if captcha is correct 
    var formAction = $("#contactForm").attr("action");  
    if (formAction == "/contactEngine.php"){
        var formData = $("#contactForm").serialize();
        $.post( formAction, formData, function(data){
            console.log (data);
            $(".formulario").changeTo({content: "<h2 class='section-title BackgroundGradientBlack'>"+ data +"</h2>"});
        });
    }
}
return false;
}

和PHP

<?php
$EmailFrom = "EmailFrom@test.com";
$EmailTo = "EmailTo@test.com";
$Name = Trim(stripslashes($_POST['Name'])); 
$Email = Trim(stripslashes($_POST['Email'])); 
$Subject = Trim(stripslashes($_POST['Subjet']));    
$Message = Trim(stripslashes($_POST['Message'])); 


$email_content = "Frontpage";
$email_content .= "\nNombre: $Name";
$email_content .= "\nEmail: $Email";
$email_content .= "\nMotivo: $Subject";
$email_content .= "\nMensaje: $Message";


$email_headers = "From: <$EmailFrom>";


if (mail($EmailTo, $Subject, $email_content, $email_headers)) {
    http_response_code(200);
    echo "Mensaje enviado";
} else {
    http_response_code(500);
    echo "Error";
}
?>

谢谢!

可能是某台正在测试可在JS中看到的PHP端点并向其发送数据的机器人,试图造成破坏。 我敢打赌,如果您每次发送电子邮件时都记录了$ _POST变量,您会在$ _POST变量中看到很多垃圾邮件。 电子邮件是空白的,只是因为漫游器不够智能,无法知道在POST中使用哪些密钥。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM