Add Google Apps Script to repo.
This commit is contained in:
parent
94d653ee62
commit
304057d85b
32
Google Apps Script/Code.gs
Normal file
32
Google Apps Script/Code.gs
Normal 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');
|
||||
}
|
8
Google Apps Script/README.md
Normal file
8
Google Apps Script/README.md
Normal 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
|
15
Google Apps Script/mailedit.html
Normal file
15
Google Apps Script/mailedit.html
Normal 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>
|
9
Google Apps Script/noparams.html
Normal file
9
Google Apps Script/noparams.html
Normal 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>
|
9
Google Apps Script/quotaexceeded.html
Normal file
9
Google Apps Script/quotaexceeded.html
Normal 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>
|
Reference in New Issue
Block a user