summaryrefslogtreecommitdiff
path: root/src/js/smtp.js
diff options
context:
space:
mode:
authorAdam Carpenter <atc@53hor.net>2020-03-19 20:28:47 -0400
committerAdam Carpenter <atc@53hor.net>2020-03-19 20:28:47 -0400
commitd318994d1e8684db3874c6987ed5e4cc3be66b2b (patch)
tree74911f5e04b185da06bf3b7da426498ad5d8df24 /src/js/smtp.js
parentcac6c323efe0e2633692a9ee182122d08a526fd3 (diff)
downloadcarpentertutoring-d318994d1e8684db3874c6987ed5e4cc3be66b2b.tar.xz
carpentertutoring-d318994d1e8684db3874c6987ed5e4cc3be66b2b.zip
better design, basic email form, logos, favicon, icons
Diffstat (limited to 'src/js/smtp.js')
-rw-r--r--src/js/smtp.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/js/smtp.js b/src/js/smtp.js
new file mode 100644
index 0000000..09b1a0d
--- /dev/null
+++ b/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