I\'ve setup a form using googledocs. I just want to have the actual data entered into the form emailed to me, as opposed to the generic response advising that the form has b
If this is a Google Form, do you have any extra columns in your spreadsheet that are not on the form? If you delete those extra columns then it started working for me.
I'll point to the comment above that solved it for me: https://stackoverflow.com/a/14576983/134335
I took that post a step further:
function sendFormByEmail(e) { var toEmail = "changeme"; var name = ""; var email = ""; // Optional but change the following variable // to have a custom subject for Google Docs emails var subject = "Google Docs Form Submitted"; var message = ""; // 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]; // Credit to Henrique Abreu for fixing the sort order for(var i in headers) { if (headers[i] = "Name") { name = e.namedValues[headers[i]].toString(); } if (headers[i] = "Email") { email = e.namedValues[headers[i]].toString(); } if (headers[i] = "Subject") { subject = e.namedValues[headers[i]].toString(); } if (headers[i] = "Message") { message = e.namedValues[headers[i]].toString(); } } // See https://developers.google.com/apps-script/reference/mail/mail-app#sendEmail(String,String,String,Object) var mailOptions = { name: name, replyTo: email, }; // This is the MailApp service of Google Apps Script // that sends the email. You can also use GmailApp here. MailApp.sendEmail(toEmail, subject, message, mailOptions); // Watch the following video for details // http://youtu.be/z6klwUxRwQI // By Amit Agarwal - www.labnol.org }
The script utilized in the example is extremely generic but very resilient to change because the message is built as a key/value pair of the form fields submitted.
If you use my script you'll have to tweak the for loop if statements to match your fields verbatim. You'll also want to edit the toEmail variable.
Thanks again for the question and answers. I was about to ditch Google Forms as the generic response was never enough for what I was trying to do.
Lastly, in response to the actual problem above "toString of undefined" specifically means one of the form fields was submitted as blank. If I had to guess, I would say the author only used this for forms where all the fields were required or a quick undefined check would've been put in place.
Something like the following would work:
for(var i in headers) { var formValue = e.namedValues[headers[i]]; var formValueText = ""; if (typeof(formValue) != "undefined") { formValueText = formValue.toString(); } message += headers[i] + ' = '+ formvalueText + "\n\n"; }
I haven't tested this precisely but it's a pretty standard way of making sure the object is defined before trying methods like toString() that clearly won't work.
This would also explain Jon Fila's answer. The script blindly assumes all of the header rows in the response are sent by the form. If any of the fields aren't required or the spreadsheet has fields that are no longer in the form, you'll get a lot of undefined objects.
The script could've been coded better but I won't fault the author as it was clearly meant to be a proof of concept only. The fact that they mention the replyTo correction but don't give any examples on implementing it made it perfectly clear.
Workaround http://www.labnol.org/internet/google-docs-email-form/20884/ You have to setup app script to forward the data as email.
You don't need to use a script. Simply go to Tools >> Notification Rules on your Google Spreadsheet. There you can change the settings to receive an email with your desired information every time the document is changed.