Skip to content

Instantly share code, notes, and snippets.

@mhawksey
Created January 18, 2013 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhawksey/4563205 to your computer and use it in GitHub Desktop.
Save mhawksey/4563205 to your computer and use it in GitHub Desktop.
Google Apps Script MailerMini (form submit handler to email google form responses to an email address)
// in Script editor select Resources then add a on form submit event to the function mailerMini
function mailerMini(e){
MailApp.sendEmail("youremail@example.com", "Email subject here", JSON.stringify(e.namedValues, null, '\t'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment