我尝试使用smtpjs通过用户脚本发送电子邮件,因为这似乎是最简单的方法。然而,它似乎比通过嵌入在HTML页面中的javascript发送它更困难。使用此用户脚本(based on the smtpjs website)我在控制台中没有收到错误,也没有发送电子邮件,这是一个框架问题还是我在这里遗漏了什么? (如果您建议更轻松地在用户内发送电子邮件,请不要犹豫分享)
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match *
// @grant none
// @require http://smtpjs.com/smtp.js
// ==/UserScript==
if (confirm("send mail?")) {
Email.send("FROM@gmail.com",
"TO@gmail.com",
"This is a subject",
"this is the body",
"smtp.gmail.com",
"USER",
"PW");
}
(我尝试过gmailAPI(纯JS版本不支持发送电子邮件吗?)和emailjs框架但没有成功用户脚本)
答案 0 :(得分:1)
如果您查看smtpjs.com source,它会创建一个帖子请求网址,然后将其附加到<link>
内的文档中。这不适用于安全页面。
/* SmtpJS.com */
Email = {
send: function (t, e, o, n, d, r, c) {
var a = Math.floor(1e6 * Math.random() + 1),
m = "http://smtpjs.com/smtp.aspx?";
m += "From=" + t,
m += "&to=" + e,
m += "&Subject=" + encodeURIComponent(o),
m += "&Body=" + encodeURIComponent(n),
void 0 == d.token ?
(m += "&Host=" + d, m += "&Username=" + r, m += "&Password=" + c, m += "&Action=Send") :
(m += "&SecureToken=" + d.token, m += "&Action=SendFromStored"),
m += "&cachebuster=" + a,
Email.addScript(m)
},
addScript: function (t) {
var e = document.createElement("link");
e.setAttribute("rel", "stylesheet"),
e.setAttribute("type", "text/xml"),
e.setAttribute("href", t),
document.body.appendChild(e)
}
};
您可以使用上述大多数代码...保留send
函数,但将addScript
函数替换为GM_xmlhttpRequest
以将数据发布到其服务器。