This workflow follows the Emailsend → Google Sheets 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 →
{
"nodes": [
{
"parameters": {
"path": "contact-form",
"method": "POST"
},
"name": "Contact Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
200,
300
]
},
{
"parameters": {
"functionCode": "return [{ json: { name: $json.name || '', email: $json.email || '', message: $json.message || '', submittedAt: new Date().toISOString() } }];"
},
"name": "Prepare Row",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
500,
300
]
},
{
"parameters": {
"operation": "append",
"sheetId": "YOUR_SHEET_ID",
"range": "Submissions!A:D"
},
"name": "Append to Sheet",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 2,
"position": [
800,
300
]
},
{
"parameters": {
"fromEmail": "noreply@example.com",
"toEmail": "admin@example.com",
"subject": "New Contact Form Submission",
"text": "Name: {{$json.name}}\nEmail: {{$json.email}}\nMessage: {{$json.message}}"
},
"name": "Notify Admin",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 1,
"position": [
1100,
300
]
}
],
"connections": {
"Contact Webhook": {
"main": [
[
{
"node": "Prepare Row",
"type": "main",
"index": 0
}
]
]
},
"Prepare Row": {
"main": [
[
{
"node": "Append to Sheet",
"type": "main",
"index": 0
}
]
]
},
"Append to Sheet": {
"main": [
[
{
"node": "Notify Admin",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Workflow-Form-To-Google-Sheets. Uses googleSheets, emailSend. Webhook trigger; 4 nodes.
Source: https://github.com/Rumman90/n8n-workflows/blob/main/workflows/workflow-form-to-google-sheets.json — 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 post-purchase review request emails for WooCommerce orders, stores expiring form links in Google Sheets, optionally shortens links with Dub.co and delays delivery, serves a hosted
Convalidaciones Académicas - Estructura Base. Uses googleSheets, emailSend, googleDrive, httpRequest. Webhook trigger; 35 nodes.
Are you tired of manually entering open house visitor information into your CRM? Losing hot leads because you didn't follow up fast enough? This powerful n8n workflow automatically syncs every SignSna
FlowV4. Uses googleSheets, emailSend, googleDrive, httpRequest. Webhook trigger; 31 nodes.
This workflow helps developers and automation teams route measurement data from a webhook to multiple destinations using n8n.