diff --git a/Google Apps Script/Code.gs b/Google Apps Script/Code.gs new file mode 100644 index 0000000..295f94b --- /dev/null +++ b/Google Apps Script/Code.gs @@ -0,0 +1,32 @@ +function doPost(e) +{ + if (!e.parameter.hasOwnProperty('subject') || !e.parameter.hasOwnProperty('body')) { + return HtmlService.createHtmlOutputFromFile('noparams'); + } + + var quota = MailApp.getRemainingDailyQuota(); + + if (quota > 0) { + + // TODO: Add additional headers? + + MailApp.sendEmail({ + to: Session.getActiveUser().getEmail(), + subject: e.parameter.subject, + htmlBody: e.parameter.body, + }); + + return HtmlService + .createTemplateFromFile('mailedit') + .evaluate(); + } else { + // quota == 0, exceeded! + return HtmlService + .createHtmlOutputFromFile('quotaexceeded'); + } +} + +function doGet(e) +{ + return HtmlService.createHtmlOutputFromFile('noparams'); +} diff --git a/Google Apps Script/README.md b/Google Apps Script/README.md new file mode 100644 index 0000000..4e4655d --- /dev/null +++ b/Google Apps Script/README.md @@ -0,0 +1,8 @@ +Google Apps Script +================== + +Project OAuth Scopes +-------------------- + +* Send email as you - https://www.googleapis.com/auth/script.send_mail +* See your primary Google Account email address - https://www.googleapis.com/auth/userinfo.email diff --git a/Google Apps Script/mailedit.html b/Google Apps Script/mailedit.html new file mode 100644 index 0000000..a2b04d3 --- /dev/null +++ b/Google Apps Script/mailedit.html @@ -0,0 +1,15 @@ + + + + + Mailed it! + + +

+ Mail (hopefully) sent to . You are allowed to send more mails today. +

+

+ Return to FRS +

+ + diff --git a/Google Apps Script/noparams.html b/Google Apps Script/noparams.html new file mode 100644 index 0000000..4dd864e --- /dev/null +++ b/Google Apps Script/noparams.html @@ -0,0 +1,9 @@ + + + + + + + This is a service module for FRS, the Fake Reservation System. + + diff --git a/Google Apps Script/quotaexceeded.html b/Google Apps Script/quotaexceeded.html new file mode 100644 index 0000000..2e7820b --- /dev/null +++ b/Google Apps Script/quotaexceeded.html @@ -0,0 +1,9 @@ + + + + + + + You exceeded your quota of daily mails. Please try again tomorrow! + +