gpt4 book ai didi

php - Ajax 邮件程序脚本无法正常工作,需要编辑什么?

转载 作者:行者123 更新时间:2023-11-28 02:31:39 25 4
gpt4 key购买 nike

我没有收到任何电子邮件,可能是什么问题?

ui.js

sendEmail = function(username, callback) {
var msg = getMessage(username);
$.ajax({
type: 'POST',
url: 'ui.php',
data: '***What should I type here ?***',
success: callback
});

ui.php

<?php
$to = "XXXXXX@gmail.com";
$subject = "you got mail";
$message = $_POST['getMessage'];
$send = @mail($to, $subject, $message);
if(!$send){
die();
}
?>

最佳答案

数据应该是数据的哈希值。所以在你的情况下:

sendEmail = function(username, callback) {
var msg = getMessage(username);
$.ajax({
type: 'POST',
url: 'ui.php',
data: { getMessage : 'Actual message' },
success: callback
});

还要确保您定义了在 success-callack 中使用的回调函数。如果您对回复不感兴趣,可以将其保留。

还有一个shortcut使用 POST 发送 ajax 请求。

关于php - Ajax 邮件程序脚本无法正常工作,需要编辑什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14058168/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com