Skip to content

Instantly share code, notes, and snippets.

@oemb1905
oemb1905 / googleform2email
Created October 30, 2015 17:11 — forked from snipe/googleform2email
Script to get the contents of a Google form submission emailed to you.
function sendFormByEmail(e)
{
// Remember to replace this email address with your own email address
var email = "you@example.com";
var s = SpreadsheetApp.getActiveSheet();
var headers = s.getRange(1,1,1,s.getLastColumn()).getValues()[0];
var message = "";
var subject = "New Hire: ";