Skip to content

Instantly share code, notes, and snippets.

@techstreams
Created February 2, 2016 04:23
Show Gist options
  • Save techstreams/ba6e8216cbc8ed1c4008 to your computer and use it in GitHub Desktop.
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
/**
* 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