From e8ab11225a306225d2be16c4464e68a4ad464918 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Tue, 2 Jun 2020 21:54:44 -0400 Subject: basic cobalt layout --- _old/src/js/smtp.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 _old/src/js/smtp.js (limited to '_old/src/js/smtp.js') diff --git a/_old/src/js/smtp.js b/_old/src/js/smtp.js new file mode 100644 index 0000000..09b1a0d --- /dev/null +++ b/_old/src/js/smtp.js @@ -0,0 +1,2 @@ +/* SmtpJS.com - v3.0.0 */ +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 } }; \ No newline at end of file -- cgit v1.2.3