提问人:Al Zenk 提问时间:9/22/2023 更新时间:9/22/2023 访问量:35
电子邮件未发送 smtpJS
Email not sending smtpJS
问:
尝试从 HTML 表单发送电子邮件。我已按照说明使用 smtpJS 和弹性电子邮件。当我单击表单上的提交按钮时,我只收到一条警报,上面写着“确定”,状态为 200。但是,我没有收到电子邮件。还有其他人遇到过这种情况吗?
function sendEmail()
{
Email.send({
SecureToken : "secure token here",
To : "[email protected]",
From : "[email protected]",
Subject : "This is the subject",
Body : "And this is the body"
}).then(
message => alert(message)
);
}
答: 暂无答案
评论