Skip to main content

Automate Shopify orders from Airtable with Gmail confirmations

Workflow preview

Workflow preview
100%
Automate Shopify orders from Airtable with Gmail confirmations preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

This n8n template from Intuz provides a complete solution to automate your order creation process. It seamlessly syncs order data from an Airtable base directly to your Sh...

Best for

  • CRM automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.airtable, n8n-nodes-base.shopify, n8n-nodes-base.gmail, n8n-nodes-base.if

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Intuz .

Original n8n.io source

1.1 Workflow description

Title
Automate Shopify orders from Airtable with Gmail confirmations
Workflow name
Automate Shopify orders from Airtable with Gmail confirmations

This n8n template from Intuz provides a complete solution to automate your order creation process.

It seamlessly syncs order data from an Airtable base directly to your Shopify store, creates the official order, and automatically sends a beautiful confirmation email to the customer, closing the loop by updating the status in Airtable.

Who's this workflow for?

  • E-commerce Managers
  • Operations Teams
  • Businesses with Custom Order Processes (e.g., B2B, phone orders, quotes)
  • Shopify Store Owners using Airtable as a CRM

How it works

1. Triggered from Airtable: The workflow starts instantly when an Airtable Automation sends a signal via a webhook. This happens when you mark an order as ready to be processed in your Airtable base.

2. Fetch Order Details: n8n receives the record ID from Airtable and fetches the complete order details, including customer information and the specific line items for that order.

3. Create Order in Shopify: All the gathered information is used to create a new, official order directly in your Shopify store.

4. Send Confirmation Email: Once the order is successfully created in Shopify, a professionally formatted HTML order confirmation email is sent to the customer via Gmail.

5. Update Airtable Status: Finally, the workflow updates the original order record in Airtable, marking its status as "Done" to prevent duplicate processing and keep your records in sync.

Key Requirements to Use This Template

1. n8n Instance: An active n8n account (Cloud or self-hosted). 2. Airtable Base: An Airtable base on a "Pro" plan or higher (required for Airtable Automations). It should contain tables for Orders and Order Line Items. 3. Shopify Store: An active Shopify store with API access permissions. 4. Gmail Account: A Gmail account to send confirmation emails.

Setup Instructions

1. Configure the n8n Workflow:

  • Webhook Node: Activate the workflow to get the Production URL from the "Webhook" node. Copy this URL.
  • Airtable Nodes: In the Get a record and Update record nodes, connect your Airtable credentials and select the correct Base and Table IDs.
  • Shopify Node: In the Create an order node, connect your Shopify store using OAuth2 credentials.
  • Gmail Node: In the Send a message node, connect your Gmail account.

2. Set Up the Airtable Automation (Crucial Step):

  • Go to your Airtable base and click on "Automations".
  • Create a new automation. For the trigger, select "When a record meets conditions".
  • Choose your Orders table and set a condition that makes sense for you (e.g., When "Shopify Ordered" is "Pending").
  • For the action, choose "Run a script". Paste the code below into the script editor: JavaScript const inputConfig = input.config(); const recordId = inputConfig.recordId; const webhookUrl = 'PASTE_YOUR_N8N_PRODUCTION_URL_HERE';

await fetch(webhookUrl, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ recordId: recordId }), });

  • ReplacePASTE_YOUR_N8N_PRODUCTION_URL_HERE with the Production URL you copied from n8n.
  • Add an input variable to the script named recordId and set its value to the "Airtable record ID" from the trigger step.
  • Test the script and turn your Airtable Automation ON.

Connect with us

For Custom Workflow Automation

Click here- Get Started

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Trigger from Airtable

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2.1

Block 3 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Fetch Order & Customer Details

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 5 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Fetch Product Line Items

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 7 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 8 - Create the Order in Shopify

Type / Role
n8n-nodes-base.shopify - shopify
Config choices
Version 1

Block 9 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 10 - Send Order Confirmation Email

Type / Role
n8n-nodes-base.gmail - gmail
Config choices
Version 2.1

Block 11 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 12 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 13 - Confirm Email Sent?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 14 - Close the Loop - Update Airtable Status

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

3. Summary Table

Workflow Automate Shopify orders from Airtable with Gmail confirmations
Complexity intermediate
Nodes 14
Categories CRM
Author Intuz
Published 10 Oct 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/9448/9448.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Automate Shopify orders from Airtable with Gmail confirmations do?

This n8n template from Intuz provides a complete solution to automate your order creation process. It seamlessly syncs order data from an Airtable base directly to your Sh...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your CRM use case.