AutomationFlowsEmail & Gmail › Gmail to Postgres Data Sync

Gmail to Postgres Data Sync

Original n8n title: Bpc Getdata

BPC GetData. Uses gmailTrigger, gmail, postgres. Event-driven trigger; 4 nodes.

Event trigger★★★★☆ complexity4 nodesGmail TriggerGmailPostgres
Email & Gmail Trigger: Event Nodes: 4 Complexity: ★★★★☆ Added:

This workflow follows the Gmail → Gmail Trigger 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 →

Download .json
{
  "name": "BPC GetData",
  "nodes": [
    {
      "parameters": {
        "pollTimes": {
          "item": [
            {
              "mode": "everyMinute"
            }
          ]
        },
        "simple": false,
        "filters": {
          "labelIds": [],
          "sender": "newsletter@biopharmcatalyst.com"
        },
        "options": {}
      },
      "name": "Gmail Trigger",
      "type": "n8n-nodes-base.gmailTrigger",
      "typeVersion": 1,
      "position": [
        -272,
        0
      ],
      "id": "7f4f19b5-f5c2-4bc2-9473-c3fc49ad1165",
      "credentials": {
        "gmailOAuth2": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "mode": "runOnceForEachItem",
        "jsCode": "// Normalisation simple + mapping vers log_mail\n\nconst stripHtml = s =>\n  (s || '')\n    .replace(/<style[\\s\\S]*?<\\/style>/gi,'')\n    .replace(/<script[\\s\\S]*?<\\/script>/gi,'')\n    .replace(/<[^>]+>/g,' ')\n    .replace(/\\s+/g,' ')\n    .trim();\n\nfunction normAddr(v) {\n  if (!v) return '';\n  if (typeof v === 'string') return v;\n\n  if (Array.isArray(v)) return v.map(normAddr).filter(Boolean).join(', ');\n  if (Array.isArray(v.value)) return v.value.map(normAddr).filter(Boolean).join(', ');\n  if (v.address || v.name) return v.name ? `${v.name} <${v.address || ''}>` : (v.address || '');\n\n  try { return JSON.stringify(v); } catch { return String(v); }\n}\n\nconst id        = $json.id || $json.messageId || '';\nconst threadId  = $json.threadId || '';\nconst from      = $json.from || $json.headers?.from || '';\nconst to        = $json.to   || $json.headers?.to   || '';\nconst subject   = $json.subject || $json.headers?.subject || '';\nconst snippet   = $json.snippet || '';\nconst html      = $json.html || '';\nconst text      = $json.text || '';\n\nconst rawBody = text ? text : stripHtml(html);\n\nconst BODY_LIMIT = 60000;\nconst SNIPPET_LIMIT = 1000;\nconst bodyTooLong = rawBody.length > BODY_LIMIT;\nconst snippetNorm = String(snippet || '');\n\nconst bodyText = bodyTooLong\n  ? `${rawBody.slice(0, BODY_LIMIT)}\u2026`\n  : rawBody;\nconst snippetText = snippetNorm.length > SNIPPET_LIMIT\n  ? `${snippetNorm.slice(0, SNIPPET_LIMIT)}\u2026`\n  : snippetNorm;\n\nconst dateHdr = $json.date || $json.headers?.date || $json.internalDate;\nlet received = new Date();\nif (dateHdr) {\n  const timestamp = Number(dateHdr);\n  const parsed = Number.isNaN(timestamp)\n    ? new Date(dateHdr)\n    : new Date(timestamp);\n  if (!Number.isNaN(parsed.valueOf())) received = parsed;\n}\n\nconst atts = $json.attachments || [];\n\nreturn {\n  json: {\n    gmail_id: id,\n    thread_id: threadId,\n    from_addr: normAddr(from),\n    to_addr: normAddr(to),\n    subject: String(subject || ''),\n    snippet: snippetText,\n    body_text: String(bodyText || ''),\n    received_at: received.toISOString(),\n    attachments_count: Array.isArray(atts) ? atts.length : 0,\n    link: id ? `https://mail.google.com/mail/u/0/#all/${id}` : null,\n    body_truncated: bodyTooLong\n  }\n};"
      },
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        16,
        0
      ],
      "id": "8a104cc6-1c07-4a73-bcfe-f0662d1fd7dd",
      "name": "Code"
    },
    {
      "parameters": {
        "operation": "getAll",
        "limit": 10,
        "simple": false,
        "filters": {
          "sender": "newsletter@biopharmcatalyst.com"
        },
        "options": {}
      },
      "type": "n8n-nodes-base.gmail",
      "typeVersion": 2.1,
      "position": [
        -256,
        -224
      ],
      "id": "ef853add-3805-4a92-bf98-8ccbe4dff4ab",
      "name": "Get many messages",
      "credentials": {
        "gmailOAuth2": {
          "name": "<your credential>"
        }
      },
      "disabled": true
    },
    {
      "parameters": {
        "operation": "executeQuery",
        "query": "WITH p AS (\n  SELECT CASE\n           WHEN jsonb_typeof($1::jsonb) = 'array' THEN ($1::jsonb->0)\n           ELSE $1::jsonb\n         END AS j\n),\nins AS (\n  INSERT INTO public.log_mail\n    (gmail_id, thread_id, from_addr, to_addr, subject, snippet, body_text, received_at, attachments_count, link)\n  SELECT\n    p.j->>'gmail_id',\n    p.j->>'thread_id',\n    p.j->>'from_addr',\n    p.j->>'to_addr',\n    p.j->>'subject',\n    COALESCE(p.j->>'snippet',''),\n    p.j->>'body_text',\n    (p.j->>'received_at')::timestamptz,\n    COALESCE((p.j->>'attachments_count')::int, 0),\n    p.j->>'link'\n  FROM p\n  ON CONFLICT (gmail_id) DO UPDATE SET\n    thread_id = EXCLUDED.thread_id,\n    from_addr = EXCLUDED.from_addr,\n    to_addr = EXCLUDED.to_addr,\n    subject = EXCLUDED.subject,\n    snippet = EXCLUDED.snippet,\n    body_text = EXCLUDED.body_text,\n    received_at = EXCLUDED.received_at,\n    attachments_count = EXCLUDED.attachments_count,\n    link = EXCLUDED.link\n  RETURNING gmail_id\n)\nSELECT json_build_object('status','ok','gmail_id', gmail_id) AS result\nFROM ins;\n",
        "options": {
          "queryReplacement": "=={{$json}}"
        }
      },
      "type": "n8n-nodes-base.postgres",
      "typeVersion": 2.6,
      "position": [
        240,
        0
      ],
      "id": "02272c3e-b71a-41d0-8366-7f8c1048ea89",
      "name": "Execute a SQL query",
      "credentials": {
        "postgres": {
          "name": "<your credential>"
        }
      }
    }
  ],
  "connections": {
    "Gmail Trigger": {
      "main": [
        [
          {
            "node": "Code",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Code": {
      "main": [
        [
          {
            "node": "Execute a SQL query",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get many messages": {
      "main": [
        [
          {
            "node": "Code",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": true,
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "bbe4aff7-5796-49b8-91d9-0f252a4518c7",
  "meta": {
    "templateCredsSetupCompleted": true
  },
  "id": "rcaxZdjxyXqquJbz",
  "tags": []
}

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.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

BPC GetData. Uses gmailTrigger, gmail, postgres. Event-driven trigger; 4 nodes.

Source: https://github.com/cpaccaud-source/n8n/blob/1f46ce465e3a8b82175c4bd3e92964ab05967420/flows/bpc_getdata.json — original creator credit. Request a take-down →

More Email & Gmail workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Email & Gmail

AICARE Email Blast System. Uses googleDrive, httpRequest, googleSheets, gmail. Event-driven trigger; 39 nodes.

Google Drive, HTTP Request, Google Sheets +2
Email & Gmail

Client Form → Draft → Approve → Sign → Deliver, fully automated

Jot Form Trigger, Gmail, Google Drive +4
Email & Gmail

ResultAnalyser. Uses gmailTrigger, executeCommand, httpRequest, gmail. Event-driven trigger; 23 nodes.

Gmail Trigger, Execute Command, HTTP Request +1
Email & Gmail

An automated n8n workflow that monitors your Gmail inbox, classifies job application emails using a local AI (Ollama), and logs every application — with company, role, and status — to a Google Sheet i

Gmail, Gmail Trigger, HTTP Request +1
Email & Gmail

Stickynote Workflow. Uses stickyNote, gmailTrigger, gmail, noOp. Event-driven trigger; 20 nodes.

Gmail Trigger, Gmail, Stop And Error