I have used multiple scripts that I've found all over the web, and am running into the same problem. I have several google docs forms that I need to receive the submitted data by email (not just a notification that the form has been submitted and the corresponding spreadsheet has been updated). This script WAS working, but has stopped for some reason:
function sendFormByEmail(e)
{
// Remember to replace XYZ with your own email address
var email = "info.wchs@gmail.com";
// Optional but change the following variable
// to have a custom subject for Google Docs emails
var subject = "Google Docs Form Submitted";
// The variable e holds all the form values in an array.
// Loop through the array and append values to the body.
var s = SpreadsheetApp.getActiveSheet();
var headers = s.getRange(1,1,1,s.getLastColumn()).getValues()[0];
var message = "";
// Credit to Henrique Abreu for fixing the sort order
for(var i in headers)
message += headers[i] + ' = '+ e.namedValues[headers[i]].toString() + "\n\n";
// This is the MailApp service of Google Apps Script
// that sends the email. You can also use GmailApp here.
MailApp.sendEmail(email, subject, message);
// By Amit Agarwal - www.labnol.org
}
To which I receive an error: TypeError: Cannot read property "namedValues" from undefined. (line 20)
I've changed nothing and now I can't find any form-submit to email script to work. Can anyone help?