js发邮件

js发邮件js发邮件,大多数人都会这样写吧<ahref=”mailto:666@88.com”>但是,一个叫smtp.js的东西用来发邮件他是这样的varEmail={send:function(a){returnnewPromise(function(n,e){a.nocache=Math.floor(1e6*Math.random()+1),a.Action=”Send”;vart=JSON.stringify(a);Email.aj

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

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注