-
-
Save techstreams/ba6e8216cbc8ed1c4008 to your computer and use it in GitHub Desktop.
Simple Google Apps Script Text Responder for iOS Workflow App. See blog post - http://goo.gl/DOMJUF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copyright (c), Laura Taylor. (MIT Licensed) | |
* https://techstreams.github.io | |
*/ | |
/** | |
* Simple Google Apps Script Content Server | |
* @returns {string} | |
*/ | |
function doGet() { | |
// Comma separated list of responses | |
var content = "Thank you very much," + | |
"See you soon," + | |
"Going to be late," + | |
"Will call later," + | |
"Have a nice day"; | |
return ContentService.createTextOutput(content); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment