8
n8n 中文网amn8n.com

使用 GPT-4 和 Gmail 为 Zoom 参会者发送个性化跟进邮件

初级

这是一个Lead Nurturing, Multimodal AI领域的自动化工作流,包含 5 个节点。主要使用 Code, Gmail, OpenAi, Webhook 等节点。 使用 GPT-4 和 Gmail 为 Zoom 参会者发送个性化跟进邮件

前置要求
  • Google 账号和 Gmail API 凭证
  • OpenAI API Key
  • HTTP Webhook 端点(n8n 会自动生成)
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc"
  },
  "nodes": [
    {
      "id": "790192b0-2b9d-4de3-aece-3e69f3668d50",
      "name": "Zoom 会议 Webhook",
      "type": "n8n-nodes-base.webhook",
      "position": [
        0,
        192
      ],
      "webhookId": "e51c2fa7-516e-44d5-bafd-f51f2e311663",
      "parameters": {
        "path": "zoom-meeting-ended",
        "options": {},
        "httpMethod": "POST"
      },
      "typeVersion": 1
    },
    {
      "id": "f0a94562-577d-4b73-a431-7baaffa5bbe1",
      "name": "规范化参与者",
      "type": "n8n-nodes-base.code",
      "position": [
        240,
        192
      ],
      "parameters": {
        "jsCode": "// Extract participants + meeting details\nconst e = $input.first().json;\nconst participants = e.payload.object.participants || [];\n\nreturn participants.map(p => ({\n  json: {\n    meeting_id: e.payload.object.id,\n    topic: e.payload.object.topic,\n    host: e.payload.object.host_email,\n    participant_name: p.user_name,\n    participant_email: p.user_email,\n    transcript: e.payload.object.transcript || '',\n    timestamp: new Date().toISOString()\n  }\n}));"
      },
      "typeVersion": 2
    },
    {
      "id": "bb4b407f-ddd1-4e6c-ab3c-18fdbc4454f4",
      "name": "生成跟进邮件",
      "type": "n8n-nodes-base.openAi",
      "position": [
        480,
        192
      ],
      "parameters": {
        "resource": "chat",
        "operation": "create",
        "requestOptions": {}
      },
      "typeVersion": 1
    },
    {
      "id": "129fc5cd-fb37-4624-a1eb-0efd0ca1f754",
      "name": "发送邮件",
      "type": "n8n-nodes-base.gmail",
      "position": [
        720,
        192
      ],
      "parameters": {
        "subject": "Follow-Up: {{ $('Normalize Participants').item.json.topic }}",
        "additionalFields": {}
      },
      "typeVersion": 1
    },
    {
      "id": "60bbb546-9faa-48b1-baec-48bbfbe5f2e2",
      "name": "设置说明",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        0,
        0
      ],
      "parameters": {
        "height": 464,
        "content": "## 🛠️ 设置步骤"
      },
      "typeVersion": 1
    }
  ],
  "pinData": {},
  "connections": {
    "Zoom Meeting Webhook": {
      "main": [
        [
          {
            "node": "Normalize Participants",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Normalize Participants": {
      "main": [
        [
          {
            "node": "Generate Follow-Up Email",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Generate Follow-Up Email": {
      "main": [
        [
          {
            "node": "Send Email",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。

这个工作流适合什么场景?

初级 - 客户培育, 多模态 AI

需要付费吗?

本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。

工作流信息
难度等级
初级
节点数量5
分类2
节点类型5
难度说明

适合 n8n 新手,包含 1-5 个节点的简单工作流

作者
David Olusola

David Olusola

@dae221

I help ambitious businesses eliminate operational bottlenecks and scale faster with AI automation. My clients typically see 40-60% efficiency gains within 90 days. Currently accepting 3 new projects this quarter - david@daexai.com

外部链接
在 n8n.io 查看

分享此工作流