我正在尝试通过静态网站通过JavaScript API发送电子邮件。目前,我可以通过发帖请求发送电子邮件。单击发送电子邮件按钮后,我将重定向到该特定的API链接。 我需要帮助以重定向到我的自定义链接,并在后端发送电子邮件。
<html>
<script>
function email()
{
$.ajax({
type:"POST",
url:"https://formspree.io/MYEMAIL@SOMEMAIL.COM",
contentType:"application/json; charset=utf-8",
dataType:"json",
success:function(result){
alert(result.d);
console.log(result);
}
});
Location.href = "https://google.com";
}
</script>
<body>
<textarea name="message" placeholder="Your message"></textarea>
<button type="submit">Send</button>
</body>
</html>
答案 0 :(得分:0)
您可以在按钮提交时调用功能
Process.GetCurrentProcess().Kill();