Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I send an email when a Google Form is submitted?

How do I send a notification email after a form has been submitted?

I have a Google Form, I open it and I go to menu More->Script Editor and add a script:

function OnSubmit(e) {
  MailApp.sendEmail ("[email protected]", "Form Submited: Foo feedback " + Date.now(), "Form Submited: Foo feedback");
}

I save the script and test it works by pressing the run button. The email gets delivered to [email protected].

Then I fill in the Google Form, but the email does not arrive in [email protected] mailbox.

P.S. I do not want to use "Email Notifications for Forms" plugin because it requests access to to many privileges. I do not want to use "Form Notifications" because for some reason it does not work for me (the emails do not get delivered).

like image 403
Wojtek Avatar asked Mar 17 '18 12:03

Wojtek


People also ask

How do I email someone who responded to a Google Form?

Set up Respondent Notifications​Open your Google Form and launch Email Notifications from the add-ons menu. Click the Create Email Notification menu to create a new rule for sending automatic email notifications to the form respondent. Set the rule name to, say, Respondent Notifications .

Can I be notified when someone completes a Google Form?

Open your form in Google Forms > Click Responses > Click More ⋮ icon > Enable Get email notifications for new responses.

Does every Google Form send email when submitted?

Google Forms can send email notifications as soon as people submit your form but, as you would notice in the screenshot, the form data submitted by the respondent is not included in the email message.


1 Answers

Finally found it, well hidden under

  • Edit form mode
  • Responses tab
  • ... menu button
  • Get email notifications for new responses.

enter image description here

like image 85
angularsen Avatar answered Sep 28 '22 06:09

angularsen