This workflow corresponds to n8n.io template #7432 — we link there as the canonical source.
This workflow follows the Gmail → Googlesheetstrigger recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "5eFDTDVU6obMSRgd",
"meta": {
"templateCredsSetupCompleted": true
},
"name": "Google Form Instant Notification",
"tags": [
{
"id": "5iQR5Cw05Bzz7Aqt",
"name": "Google",
"createdAt": "2025-08-02T17:36:32.751Z",
"updatedAt": "2025-08-02T17:36:32.751Z"
},
{
"id": "PlBq4GrfRsEhR6mN",
"name": "google form",
"createdAt": "2025-08-14T09:57:38.641Z",
"updatedAt": "2025-08-14T09:57:38.641Z"
},
{
"id": "S94PaeZJiPKn5Ei9",
"name": "gmail",
"createdAt": "2025-08-14T09:57:18.678Z",
"updatedAt": "2025-08-14T09:57:18.678Z"
},
{
"id": "Unbn35P90TtJuAQC",
"name": "email",
"createdAt": "2025-08-14T09:57:13.394Z",
"updatedAt": "2025-08-14T09:57:13.394Z"
},
{
"id": "h2TBJOs7feXDIfbL",
"name": "google sheet",
"createdAt": "2025-08-14T09:57:22.041Z",
"updatedAt": "2025-08-14T09:57:22.041Z"
},
{
"id": "rYuINsb3Y1XjrgNv",
"name": "Productivity",
"createdAt": "2025-08-02T17:36:49.812Z",
"updatedAt": "2025-08-02T17:36:49.812Z"
}
],
"nodes": [
{
"id": "c07717f4-b7b0-4628-a71d-0eb1016934fd",
"name": "Sticky Note1",
"type": "n8n-nodes-base.stickyNote",
"position": [
64,
-320
],
"parameters": {
"color": 3,
"height": 176,
"content": "## Required\n\n\n- Google account\n- Google Form\n- Google Sheet linked to the form"
},
"typeVersion": 1
},
{
"id": "7d6c113d-07c0-4808-87a0-a0dd999fa45c",
"name": "Sticky Note3",
"type": "n8n-nodes-base.stickyNote",
"position": [
768,
-320
],
"parameters": {
"color": 4,
"width": 560,
"height": 848,
"content": "## 2. Send the email\n\nThe code node, will create the message and gather all the informations wanted about the row newly added. So you'll get a new message with the new informations.\n\n\nHow to setup:\n- Connect with your Gmail account credentials."
},
"typeVersion": 1
},
{
"id": "33e3c6da-fa71-4882-95da-fcb6c3380f83",
"name": "Sticky Note",
"type": "n8n-nodes-base.stickyNote",
"position": [
336,
-320
],
"parameters": {
"color": 2,
"width": 416,
"height": 848,
"content": "## 1.Workflow trigger et data gathering\n\nThe workflow is **triggered automatically** as soon as a new request is received (a new row in the Google sheet from the Google Form). \n\nHow to setup:\n- Set up your Google form and link it to a google sheet\n- link the google sheet to this workflow"
},
"typeVersion": 1
},
{
"id": "6fb8f4e7-0e51-4c54-a5e9-55c75b77fcb8",
"name": "Email generation",
"type": "n8n-nodes-base.code",
"position": [
832,
0
],
"parameters": {
"jsCode": "const item = $input.item.json;\n\nlet html = `\n <h2>\ud83d\udcec You just got a new question received</h2>\n <p><strong>From:</strong> ${item[\"Adresse e-mail\"] || \"N/A\"}</p>\n <p><strong>Request:</strong> ${item[\"Please write your request\"] || \"N/A\"}</p>\n`;\n\nreturn [{ json: { html } }];\n"
},
"typeVersion": 2
},
{
"id": "21ee131e-0206-4244-b16a-a5124a786b9b",
"name": "Trigger when a row is added",
"type": "n8n-nodes-base.googleSheetsTrigger",
"position": [
416,
0
],
"parameters": {
"event": "rowAdded",
"options": {},
"pollTimes": {
"item": [
{
"mode": "everyMinute"
}
]
},
"sheetName": {
"__rl": true,
"mode": "id",
"value": "id"
},
"documentId": {
"__rl": true,
"mode": "url",
"value": "url"
}
},
"credentials": {
"googleSheetsTriggerOAuth2Api": {
"name": "<your credential>"
}
},
"notesInFlow": false,
"typeVersion": 1
},
{
"id": "95b749c3-12fa-4c8c-a946-2e4177908847",
"name": "Instant email",
"type": "n8n-nodes-base.gmail",
"position": [
1040,
0
],
"parameters": {
"sendTo": "email",
"message": "={{$json.html}}",
"options": {},
"subject": "The requests you received today"
},
"credentials": {
"gmailOAuth2": {
"name": "<your credential>"
}
},
"typeVersion": 2.1
}
],
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "053a5a9a-940f-4a93-a121-9d16d23d0665",
"connections": {
"Email generation": {
"main": [
[
{
"node": "Instant email",
"type": "main",
"index": 0
}
]
]
},
"Trigger when a row is added": {
"main": [
[
{
"node": "Email generation",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
gmailOAuth2googleSheetsTriggerOAuth2Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Get a single Gmail notification immediately whenever someone submits your Google Forms. The workflow watches the Form-linked Google Sheets for new rows and sends a clean, readable email within about a minute—perfect for time-sensitive workflows.
Source: https://n8n.io/workflows/7432/ — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
This workflow sends an instant email alert when a task in a Google Sheet is marked as Urgent, and then sends a Telegram reminder notification after 2 hours if the task still hasn’t been updated. Then
Workflow starts from a manual trigger or form submission with project details. It extracts key input data like client name, email, project type, deadline, and brand folder (optional). A Google Drive f
Receive one clean Gmail recap each day with all Google Forms submissions. The workflow reads your Form-linked Google Sheets, compiles every request submitted today, and sends a single, structured emai
Transform your Google Form into an intelligent customer support system that automatically analyzes, prioritizes, and responds to every inquiry with AI-powered personalization.
This workflow runs every Monday at 8 AM and automatically monitors your Jira project, measures progress against the active sprint, and delivers a structured report to stakeholders — with zero manual e