如何使用JS和HTML发送邮件?
我想创建一个能够发送电子邮件的功能,当我点击"发送邮件"按钮。
像那样:<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<button onclick="MyFunc()">Send mail</button>
<script>
function MyFunc() {
var x=confirm("Are you sure that you want to sent mail?")
if(x==true)
{
***What to write here***
}
}
</script>
</body>
</html>