Skip to content

Instantly share code, notes, and snippets.

@sauntimo
Created November 9, 2012 17:38
Show Gist options
  • Save sauntimo/4047047 to your computer and use it in GitHub Desktop.
Save sauntimo/4047047 to your computer and use it in GitHub Desktop.
Trigger Test Email
function OnSubmit(e){
MailApp.sendEmail("[email protected]", "Your form was submitted!",
"Hey you!" +
"\n\n Someone submitted your form. Here's what they had to say:" +
"\n\n Favourite Colour: " + e.values[1] +
"\n Explanation: " + e.values[2])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment