我在 MAC 上运行,我正在尝试将 php 邮件与 ajax 实现一起使用。
我已将代码简化为简化为字符串:
在我的 .js 文件中:
function ajaxMail2() {
$('#sending').show();
$.ajax({
type:'POST',
url:'ajax/mail.php',
success:function(data, status) {
$('#sending').hide();
$('#success').fadeIn(1000,function() {
//$(this).delay(200).fadeOut(1000);
});
},
error:function(data, status, e) {
$('#sending').hide();
$('#fail').fadeIn(1000,function() {
$(this).delay(200).fadeOut(1000);
});
}
});
}
在我的 .php 文件中:
<?php
$to = 'foo@gmail.com';
mail($to,'test','test');
?>
提交表单后,它会转到成功功能,但没有电子邮件发送到 $to。有任何想法吗?