In this article:

Get Email Notifications for New Responses in Google Forms (2024)

In this article you will learn how to get email notifications for new responses in google forms in just a few clicks. Simply follow the steps below.

Google Forms Email Notifications for New Responses


Step 1: Transfer Google Form Responses to a Google Sheet

Follow these steps to use Google Forms’ built in feature:

  1. At the top left, within the "Responses" tab, select "Summary."
  2. In the top right corner, click "More," then "Select destination for responses."
  3. Select "Create a new spreadsheet."
  4. Click "Create."

This will create a new Google Sheet.  Copy this URL, we will need it later. 

Step 2: Connect Google Form Responses Spreadsheet to Lido

You cannot send email notifications using Google Sheets.  We will use Lido to do this instead.  You can create a free account at: www.lido.app/go/signup.  

Then follow these steps:

  1. Create a fresh Lido file
  2. Next, click on 'Connect Data,' and opt for 'Google Sheets.'
  3. Paste the URL of the Google Sheet obtained in Step 1, which contains your Google Form responses.  You'll be prompted to log in to a Google account with access to that particular Google Sheet.
  4. Now, select the specific columns you want to import into Lido. Each column should correspond to a question from your Google Form. Make sure to choose all the columns you intend to include in your email notifications.

google forms get email notifications for new responses

Click Add Data. This will create a Lido table of your Google Form responses. 

Step 3: Write Custom Email Notification Templates

In this step we'll tailor our email notification content, including which details from the Google Form responses should be incorporated into our email notifications.

Set up a new worksheet for your notification templates.  Utilize the [@Column] syntax to reference various columns as variables. This method allows you to easily insert information from new Google Form responses directly into your email notifications.

google form response email notification

Step 4:  Configure Notification Emails

Next, let's connect our recently crafted templates with our form response table. Return to your table and add a new computed column named “Subject”.

get email notification of each response google forms

In the new column, enter the formula:

```=STRINGTEMPLATE(Sheet1!$B$1)```

Replace Sheet1!$B$1 with the actual cell where the email notification subject template from step 3 is located.  

Create another computed column and do the same thing for email body:

```=STRINGTEMPLATE(Sheet1!$B$2)```

Again, remember to replace Sheet1!$B$2 with the location of your email body template.

At this point, your table should appear as shown below. Observe how the variables [@Column] have been substituted with the real values from the corresponding form responses for each row.

Step 5: Add SENDGMAIL Formula

We'll use Lido's special SENDGMAIL formula to send emails. 

Now, make a new column in your spreadsheet. In the second row of that column, put in this formula:

```=SENDGMAIL("your@email.com", "recipient@email.com", E2, F2, H2)```

Here is what each part does:

Sender: “your@email.com”, this is the email address notifications will be sent from

Recipient: “recipient@email.com”, this is the email address notifications will be sent to

Subject: E2, this is the email subject

Body: F2, this is the email body

Status: H2, this is the spreadsheet cell where the result of whether the email has been sent will be displayed

Make sure to replace the different cell locations in the formula with the actual cells in your spreadsheet. 

You can also send an email to an address from your form by putting the cell location (like C2) in the second part instead of "recipient@email.com." If you want to notify multiple people of new form responses, you can use ARRAY("recipient1", "recipient2", "recipient3") in the formula's recipient section.

You should now have a column of SENDGMAIL Action formulas. Right click on the SENDGMAIL and Run action to send a test email.

You'll need to log in to the sender's email address the first time you use this feature. Ensure it's a Google email account and that it matches the email address you've mentioned in the formula.

Once the email is sent successfully, you'll notice a "success" message briefly appear in the cell. The cell you designated as the status cell will also be updated to display "success."

Step 6: Customize Notification Trigger Logic for New Responses

Now we need to ensure that only one notification email is sent per new form response.  

First, add a Linked Column to your table to keep track of notification sent status.  You will be prompted to choose an ID column; we recommend selecting Timestamp.  If you did not connect the timestamp column, you can click Edit data and go back to the data browser to add it. 

The location of your status column must be the same as the location specified in the status_cell for your SENDGMAIL formula (column H in this example).  Update your SENDGMAIL formula as needed.

Now we need to add an IF statement to our SENDGMAIL formula so that it only displays if an email notification has not already been sent for that response row. 

```=IF(H2<>”success”,SENDGMAIL(“your@email.com”, “recipient@email.com”, E2, F2, H2))```

The SENDGMAIL formula will now only display if an email has not already been successfully sent.

Step 7: Automate Triggering of SENDGMAIL Formula for New Form Responses

The last step is to automate running all of the SENDGMAIL formulas in the column.  Click on the column header and select Run column on a schedule.

This will open the automation panel.  Select how frequently you want to check for updates.  On each automation interval, Lido will pull in your latest form submissions and send notifications.  In this example we will select 15 minutes.

Click Save. Then you are all set!

Now, when a new Google Form response is submitted, Lido will automatically fetch the information and send an email notification.  

We hope that you now have a better understanding of how to set up email notifications for new google forms responses!

You might also like our articles on custom approval workflows and how to get email responses from Google Forms.

Get Google Forms productivity and automation tips delivered straight to your inbox
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
We'll email you 1-3 times a week — and never share your information.
Get your copy of our free Google Sheets automation guide!
  • 27 pages of Google Sheets tips and tricks to save time
  • Covers pivot tables and other advanced topics
  • 100% free

Work less, automate more!

Use Lido to connect your spreadsheets to email, Slack, calendars, and more to automate data transfers and eliminate manual copying and pasting. View all use cases ->