🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Gmail to Google Sheets, restaurant feedback logged

Lisa Granqvist Partner Workflow Automation Expert

You know that moment when someone says, “We should collect more customer feedback,” and suddenly it becomes your problem. You send a bunch of emails, a few people respond, and then those responses end up scattered across inboxes, notes, and screenshots.

This is where Gmail Sheets feedback automation pays off. Restaurant managers feel it first, but marketing leads and ops folks get dragged in too. The outcome is simple: feedback requests go out automatically, and every reply gets logged into one clean Google Sheets tracker you can actually use.

Below, you’ll see how the workflow runs, what it fixes, and what you need to set it up without turning it into a “new system” your team refuses to adopt.

How This Automation Works

See how this solves the problem:

n8n Workflow Template: Gmail to Google Sheets, restaurant feedback logged

The Challenge: Restaurant feedback gets lost (or never happens)

Collecting feedback after a visit sounds easy until you try doing it consistently. You export a list of guests, paste emails into Gmail, tweak the wording, and hope the message doesn’t land in Promotions. Replies come in at random times, sometimes with missing details, sometimes with a long story you can’t search later. Then the “analysis” step becomes a new task: someone has to retype ratings, copy comments, and try to remember which shift or day the guest is talking about. Honestly, the busywork is why most restaurants stop after week two.

It adds up fast. Here’s where the friction compounds into missed insights.

  • Sending feedback requests one-by-one turns into a weekly calendar chore that never stays done.
  • Replies live inside Gmail threads, so trends are hard to spot and “what changed last month?” becomes guesswork.
  • Manual copy-paste into a spreadsheet invites errors, especially when you’re rushing between service tasks.
  • Incomplete responses slip through, which means you get noise instead of usable signals.

The Fix: Automated feedback emails + clean Google Sheets logging

This n8n workflow turns feedback collection into something that runs in the background. When a new guest record appears in your customer list (name and email), the automation picks it up, prepares the message content, and sends a personalized feedback request by email. The guest fills out the embedded form, and their submission triggers the second half of the workflow. After a short delay (useful for reliable processing), the response is formatted and written into your Google Sheets feedback log with a timestamp. You end up with a consistent dataset: ratings, comments, and contact details stored in one place, not trapped in an inbox.

The workflow begins with a new row added to your customer sheet, then uses a small script step to hold and shape the data before emailing. When a form submission comes in, n8n waits briefly, then upserts the response into your Google Sheets tracker so nothing gets missed during busy periods.

What Changes: Before vs. After

Real-World Impact

Say you add 40 guest emails per week to your customer list. Manually, you might spend about 3 minutes per guest to personalize, send, and track that request, which is roughly 2 hours weekly. Then you lose another hour copying replies into a spreadsheet (and fixing typos). With this workflow, adding the guest row is the only real “task,” and logging happens automatically after each form submission. You get those 3 hours back, and the sheet is ready to review on Monday.

Requirements

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Gmail (or email send connection) to send feedback request emails.
  • Google Sheets to store requests and responses cleanly.
  • Microsoft Excel 365 if your customer list lives in Excel.
  • OpenAI API key (get it from your OpenAI dashboard) for optional message polishing via AI.

Skill level: Beginner. You’ll connect accounts, confirm sheet columns, and paste your email/form content.

Need help implementing this? Talk to an automation expert (free 15-minute consultation).

The Workflow Flow

A new guest gets added to your list. The workflow watches your customer sheet for new entries (name + email), then pulls that row into n8n.

The data is cleaned and prepared. A short code step holds the incoming details and makes sure fields like name and email are usable, so you don’t send “Hi ,” to someone because a cell was empty.

The feedback request email goes out. n8n sends a personalized message through your email connection (Gmail or similar), including the feedback form link or embedded form content your guests fill out.

Submissions get logged automatically. When the guest submits the form, n8n waits briefly, then writes the full response into Google Sheets, including a timestamp and all question fields.

You can easily modify the feedback questions to match a new menu, a special event, or a different location based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Form Trigger

Set up the public feedback form that starts the workflow and collects dining feedback responses.

  1. Add the Form Submission Hook node as your primary trigger.
  2. Set Form Title to Customer Feedback Questions for IT Services.
  3. In Options, set Path to feedback/list and keep Append Attribution disabled.
  4. Define the form fields exactly as listed in the node: What is your Name?, Email ID, Contact Number, multiple dropdown questions, and the Any additional comments or suggestions? textarea.

Tip: The Form Submission Hook includes custom CSS for styling. Keep it as-is unless you want to change the branding or layout.

Step 2: Connect Google Sheets

Configure Google Sheets nodes that read spreadsheet data and store new feedback responses.

  1. Open Spreadsheet Feedback Trigger and set Document to [YOUR_ID] and Sheet to gid=0 (labelled user detail).
  2. Set Poll Times to everyMinute for Spreadsheet Feedback Trigger.
  3. Credential Required: Connect your googleSheetsTriggerOAuth2Api credentials in Spreadsheet Feedback Trigger.
  4. Open Upsert Feedback Row and set Operation to appendOrUpdate.
  5. Set Document to [YOUR_ID] and Sheet to Food_feedback in Upsert Feedback Row.
  6. Map columns using the provided expressions, for example Name to {{ $json['What is your Name?'] }} and E-Mail to {{ $json['Email ID'] }}.
  7. Credential Required: Connect your googleSheetsOAuth2Api credentials in Upsert Feedback Row.

⚠️ Common Pitfall: Ensure your Google Sheet has columns that match the exact column names in Upsert Feedback Row (for example, E-Mail and Any additional comments or suggestions?), otherwise the upsert will fail.

Step 3: Set Up Processing and Timing

Control the flow timing and prepare data for the feedback email step.

  1. Add Delay Before Processing after Form Submission Hook and set Amount to 10 seconds.
  2. Connect Spreadsheet Feedback Trigger to Hold Data with Script to align spreadsheet-based entries with the email send step.
  3. In Hold Data with Script, keep the JavaScript snippet that logs and delays: console.log("Waiting..."); setTimeout(() => { console.log("5 seconds passed."); }, 5000);.

Tip: The execution flow is sequential: Form Submission HookDelay Before ProcessingUpsert Feedback Row, and Spreadsheet Feedback TriggerHold Data with ScriptDispatch Feedback Email.

Step 4: Configure Output and Notifications

Send a feedback request email after data is captured from the spreadsheet trigger flow.

  1. Open Dispatch Feedback Email and set Subject to Feedback.
  2. Set To Email to {{ $json.Email }} and From Email to [YOUR_EMAIL].
  3. Set Email Format to text and keep the message body as Please give us your valuable feedback at: https://example.com/feedback.
  4. Credential Required: Connect your smtp credentials in Dispatch Feedback Email.

Step 5: Test and Activate Your Workflow

Validate the workflow end-to-end, then enable it for live feedback collection.

  1. Click Execute Workflow and submit a test response using the Form Submission Hook form URL.
  2. Confirm a new row is appended or updated in the Google Sheet via Upsert Feedback Row with mapped values like {{ $json['Email ID'] }} and {{ $json.submittedAt }}.
  3. Trigger Spreadsheet Feedback Trigger by adding a test row to the source sheet, and verify that Dispatch Feedback Email sends to {{ $json.Email }}.
  4. When everything works as expected, toggle the workflow to Active to run in production.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Watch Out For

  • Google Sheets permissions can block writes even when the sheet “opens fine.” If rows stop logging, check the connected Google account in n8n credentials and confirm it still has edit access to the target spreadsheet.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Common Questions

How quickly can I implement this Gmail Sheets feedback automation?

Usually about an hour if your sheets and Gmail are ready.

Can non-technical teams implement this feedback logging process?

Yes. No coding is required, but you will need to match the form questions to the correct Google Sheets columns.

Is n8n free to use for this Gmail Sheets feedback workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in OpenAI API costs if you use the AI Agent (usually pennies per batch of emails, depending on volume).

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

How do I adapt this Gmail Sheets feedback solution to my specific challenges?

You can swap the email wording and questions without changing the overall logic. Most customizations happen in the “Dispatch Feedback Email” step (your message content) and the “Upsert Feedback Row” step (your column mapping). Many restaurants add one or two location-specific questions, remove anything that feels repetitive, and change the timing so requests send the morning after a visit instead of immediately.

Why is my Gmail connection failing in this workflow?

Usually it’s an expired OAuth permission or the wrong Gmail account connected in n8n. Reconnect the Gmail credential, then send a test email from the “Dispatch Feedback Email” node to confirm it can send. If it works in tests but fails in production, check sending limits and make sure you’re not blasting a large list in a short window.

What’s the capacity of this Gmail Sheets feedback solution?

It scales fine for most small teams, because each guest and each submission is just another execution.

Is this Gmail Sheets feedback automation better than using Zapier or Make?

Sometimes. If you want simple “form to spreadsheet,” Zapier or Make can be quicker to click together. But n8n is easier to expand when you want branching rules, retries, and extra processing without paying more for every little filter. It also gives you a self-hosted option, which can matter when you’re running this daily. The main win is flexibility: you can keep the same workflow and add things like sentiment tags, manager alerts, or a weekly summary email later. Talk to an automation expert if you’re not sure which fits.

Once this is running, feedback stops being a “we should do that” project and becomes a steady stream of answers you can act on. The workflow handles the repetitive parts so you can focus on service, training, and fixing what guests actually mention.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal