js
发邮件,大多数人都会这样写吧
<a href="mailto:666@88.com">
但是,一个叫smtp.js
的东西用来发邮件
他是这样的
var Email = {
send: function (a) {
return new Promise(function (n, e) {
a.nocache = Math.floor(1e6 * Math.random() + 1), a.Action = "Send"; var t = JSON.stringify(a); Email.ajaxPost("https://smtpjs.com/v3/smtpjs.aspx?", t, function (e) {
n(e) }) }) }, ajaxPost: function (e, n, t) {
var a = Email.createCORSRequest("POST", e); a.setRequestHeader("Content-type", "application/x-www-form-urlencoded"), a.onload = function () {
var e = a.responseText; null != t && t(e) }, a.send(n) }, ajax: function (e, n) {
var t = Email.createCORSRequest("GET", e); t.onload = function () {
var e = t.responseText; null != n && n(e) }, t.send() }, createCORSRequest: function (e, n) {
var t = new XMLHttpRequest; return "withCredentials" in t ? t.open(e, n, !0) : "undefined" != typeof XDomainRequest ? (t = new XDomainRequest).open(e, n) : t = null, t } };
我们直接email.send
就好了
这里是教会大家怎么用
email.send(
Host : "host",//就是开通smtp的服务器
Username : "user@email.net",//你smtp用户名
Password : "**********",//smtp授权码,不是qq密码或者163密码
To : 'Who?',//发给谁?是邮箱地址
From : "***",//发件人,也是邮箱地址,否则报错
Subject : "验证消息",//邮件主题
Body : "haha"//支持html
)
范例:
Email.send({
Host : "smtp.163.com",
Username : "qq3051247810@163.com",
Password : "不可示人!!!!",
To : '3051247810@qq.com',
From : "qq3051247810@163.com",
Subject : "验证消息",
Body : "你的验证码是214598"
}).then(
message => write(message)
);
等一下,就会:
怎么样,又get
到一招了吧!
今天的文章js发邮件分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/12212.html