在用户脚本中使用 SmtpJS:不起作用,没有错误消息?

Using SmtpJS in a userscript: Doesn't work, no error messages?

我正在尝试使用 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框架在用户脚本中没有成功)

如果您查看 smtpjs.com source,它会创建一个 post 请求 url,然后将其附加到 <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 到 post 数据他们的服务器。