Add Google Apps Script to repo.

This commit is contained in:
Markus Birth 2022-10-10 03:23:33 +02:00
parent 94d653ee62
commit 304057d85b
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A
5 changed files with 73 additions and 0 deletions

View File

@ -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');
}

View File

@ -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

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<title>Mailed it!</title>
</head>
<body>
<p>
Mail (hopefully) sent to <strong><?= Session.getActiveUser().getEmail() ?></strong>. You are allowed to send <?= MailApp.getRemainingDailyQuota() ?> more mails today.
</p>
<p>
<a href="https://raspi.mbirth.de/dev/FRS/">Return to FRS</a>
</p>
</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
This is a service module for FRS, the Fake Reservation System.
</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
You exceeded your quota of daily mails. Please try again tomorrow!
</body>
</html>