我已经设置了一个表单,该表单使用jQuery ajax将POST请求发送到外部php文件,然后发送电子邮件。我收到200状态代码,但没有收到电子邮件。
这是jQuery:
var ajaxSend = function(dataObj) {
$.ajax({
type: 'POST',
url: 'send.php',
data: dataObj,
success: function() {console.log('Ajax Success!');},
error: function() {console.log('Ajax Error!');},
statusCode: {
200: function() {console.log('200 Everything ok!');},
400: function() {console.log('400 Bad request');},
403: function() {console.log('403 Forbidden');},
500: function() {console.log('500 Server error');}
}
});
}
$('.contact-form input[type="submit"]').click(function(e) {
if($('form')[0].checkValidity()) { //checks if insetred value meets the HTML5 required attribute
e.preventDefault();
var dataObj = {
name: $.trim($('.contact-form input[type="text"]').val()),
email: $.trim($('.contact-form input[type="email"]').val()),
message: $.trim($('.contact-form textarea').val())
};
ajaxSend(dataObj);
} else { console.log("Invalid form"); }
});
这是php文件:
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$to_email = "myemail@gmail.com";
$data = json_decode($_POST['dataObj']);
$subject = 'Email subject';
$headers = 'From: '.$data['email'];
$message = 'Name: '.$data['name'].' \n';
$message .= 'Email: '.$data['email'].' \n\n';
$message .= 'Message:\n'.$data['message'].' \n';
if (mail($to_email, $subject, $message, $headers)) {
http_response_code(200);
} else {
http_response_code(500);
}
} else {
http_response_code(403);
}
网络托管是Windows,我已尝试使用POST请求,但它工作得很好,我收到了电子邮件。我不认为这是一个php.ini问题吗?
答案 0 :(得分:4)
您的第一个问题是您在服务器端使用$_POST['dataObj']
而数据仅在$_POST
中可用(dataObj是一个不会传递给服务器的javascript变量名称) )。您可以通过阅读$_POST['email']
来获取电子邮件。尝试将您的send.php更改为:
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$to_email = "myemail@gmail.com";
$subject = 'Email subject';
$headers = 'From: '.$_POST['email'];
$message = 'Name: '.$_POST['name'].' \n';
$message .= 'Email: '.$_POST['email'].' \n\n';
$message .= 'Message:\n'.$_POST['message'].' \n';
if (mail($to_email, $subject, $message, $headers)) {
http_response_code(200);
} else {
http_response_code(500);
}
} else {
http_response_code(403);
}
注意:如果没有某种转义,在$ headers-variable中直接使用$ _POST是不安全的。如果你这样做,攻击者可以设置其他参数。谷歌在此之前将其用于生产。
如果您收到200,那么发送过程中的某些内容可能比您的Linux设置更容易阻止带有格式错误标题的邮件。 但是你应该用你提供的php代码得到错误的电子邮件,这是正确的吗?如果以后错误仍然发生,请回复此帖子。