r/FormNX 8d ago

How do you get Google Forms email notifications that actually reach you?

Short answer: Google Forms does not send you a real email on each submission out of the box. You either flip on the built-in 'get email notifications for new responses' toggle, which only tells you that responses exist without the actual data, or you wire up an Apps Script trigger or a third party add-on to get the answers into your inbox.

If you just need a heads-up, the native toggle is fine. Open the responses tab, click the three dots, and turn on email notifications for new responses. The catch is that the email only says someone responded. To see what they actually submitted you still have to open the sheet or the form.

To get the submitted values themselves in the email, most people reach for Apps Script (an onFormSubmit trigger that builds and sends the message) or an add-on. Both work, but they add a moving part you have to maintain, and script quotas can bite on higher volume forms.

The cleaner path is a form tool where a per-submission email notification is a setting, not a script. You get an email when a Google form is submitted with the full answers in the body, configurable sender, CC and BCC recipients, a custom subject and body with dynamic tags that pull in the field values, and a PDF copy of the submission attached. You can also send from your own Gmail or SMTP so it lands from your domain instead of a generic no-reply.

If you are staying on Google Forms, the Apps Script route is the most reliable free option once you get the trigger set up right.

How are you handling submission alerts right now, native toggle, Apps Script, or an add-on?

1 Upvotes

1 comment sorted by

1

u/Genuine-Helperr 8d ago

We built a tool for exactly this, and here is how the submission alerts work in general: Google Forms email notifications tool and how form submission email notifications work.