I want my Google Forms to send me an email when I receive a response. How do I that?

Modified on Wed, 13 May 2015 at 07:43 PM

Google Forms is very powerful and you can have Google automatically send messages to the user on submission or to you when a new entry has been submitted.



Try this form




This is the script that was used with this particular form: 


 

function formSubmitNotification(e) {
  var userEmail = e.namedValues["Email"];
  var firstName = e.namedValues["First Name"];
  var lastName = e.namedValues["Last Name"];
  var subject = "Thank you for your feedback";
  var body = "Hello " + firstName + ", /n This email was generated from Google based on your form submission. Create your own Google Form email responders. Visit our blog on http://ativsoftware.com.";

  MailApp.sendEmail(userEmail, subject, body);
}

 

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article