8
n8n 中文网amn8n.com

已验证用户个人资料创建

高级

这是一个Document Extraction领域的自动化工作流,包含 20 个节点。主要使用 If, Set, Gmail, Webhook, HttpRequest 等节点。 通过邮件验证、PDF生成和Gmail投递创建已验证用户个人资料

前置要求
  • Google 账号和 Gmail API 凭证
  • HTTP Webhook 端点(n8n 会自动生成)
  • 可能需要目标 API 的认证凭证
  • Google Sheets API 凭证
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "id": "",
  "meta": {
    "instanceId": "",
    "templateCredsSetupCompleted": false
  },
  "name": "已验证用户个人资料创建",
  "tags": [],
  "nodes": [
    {
      "id": "6b5340c0-efc3-42ed-ba9b-f87d4df66ca9",
      "name": "便签 1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -192,
        -32
      ],
      "parameters": {
        "color": 6,
        "width": 405,
        "height": 410,
        "content": "## 🔧 设置凭据"
      },
      "typeVersion": 1
    },
    {
      "id": "a5433c21-6cc1-4147-aaae-2c12102e95b5",
      "name": "Webhook - 接收用户数据",
      "type": "n8n-nodes-base.webhook",
      "position": [
        368,
        224
      ],
      "webhookId": "",
      "parameters": {
        "path": "create-profile",
        "options": {},
        "httpMethod": "POST",
        "responseMode": "lastNode"
      },
      "typeVersion": 1
    },
    {
      "id": "3bd46209-c0c6-4b89-acaf-752e5e16f332",
      "name": "便签 2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        240,
        -112
      ],
      "parameters": {
        "color": 5,
        "width": 356,
        "height": 493,
        "content": "## 📥 步骤 1:WEBHOOK 触发器"
      },
      "typeVersion": 1
    },
    {
      "id": "0033dc9f-4322-4fd2-9df9-7e78761dce5d",
      "name": "便签 3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        608,
        0
      ],
      "parameters": {
        "color": 5,
        "width": 248,
        "height": 381,
        "content": "## ✅ 步骤 2:邮箱验证"
      },
      "typeVersion": 1
    },
    {
      "id": "d171efbb-aeb3-48dc-ba89-34ad1308c22d",
      "name": "如果邮箱有效?",
      "type": "n8n-nodes-base.if",
      "position": [
        960,
        224
      ],
      "parameters": {
        "conditions": {
          "boolean": [
            {
              "value1": "={{ $json.valid }}",
              "value2": "={{ true }}"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "c5ef3261-eeda-4934-bee0-0ecc3549ce4a",
      "name": "便签 4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        880,
        -144
      ],
      "parameters": {
        "color": 5,
        "width": 316,
        "height": 507,
        "content": "## ⚖️ 步骤 3:条件逻辑"
      },
      "typeVersion": 1
    },
    {
      "id": "d8664417-6235-4331-b37a-ee0a216d04f2",
      "name": "生成 HTML 模板",
      "type": "n8n-nodes-base.set",
      "position": [
        1328,
        64
      ],
      "parameters": {
        "values": {
          "string": [
            {
              "name": "html_content",
              "value": "=<html>\n   <head>\n     <style>\n       body { font-family: 'Inter', sans-serif; padding: 40px; background: #f9fafb; }\n       .container { background: white; border-radius: 20px; padding: 30px; max-width: 600px; margin: auto; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }\n       h1 { color: #2563eb; text-align: center; margin-bottom: 20px; }\n       h2 { color: #1f2937; margin-top: 20px; }\n       p { color: #4b5563; line-height: 1.6; margin: 10px 0; }\n       .label { font-weight: 600; color: #374151; }\n       .footer { color: #9ca3af; font-size: 12px; margin-top: 30px; text-align: center; border-top: 1px solid #e5e7eb; padding-top: 15px; }\n     </style>\n   </head>\n   <body>\n     <div class=\"container\">\n       <h1>👤 Verified User Profile</h1>\n       <h2>{{ $('Webhook - Receive User Data').item.json.body.name }}</h2>\n       <p><span class=\"label\">Email:</span> {{ $('Webhook - Receive User Data').item.json.body.email }}</p>\n       <p><span class=\"label\">City:</span> {{ $('Webhook - Receive User Data').item.json.body.city }}</p>\n       <p><span class=\"label\">Profession:</span> {{ $('Webhook - Receive User Data').item.json.body.profession }}</p>\n       <p><span class=\"label\">Bio:</span> {{ $('Webhook - Receive User Data').item.json.body.bio }}</p>\n       <div class=\"footer\">\n         ✅ Verified by n8n Automation<br>\n         Generated on: {{ new Date().toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' }) }}\n       </div>\n     </div>\n   </body>\n   </html>"
            }
          ]
        },
        "options": {}
      },
      "typeVersion": 2
    },
    {
      "id": "7633467d-1190-4223-bcd0-07f03cecafc5",
      "name": "便签 5",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1216,
        -208
      ],
      "parameters": {
        "color": 5,
        "width": 284,
        "height": 428,
        "content": "## 🧾 步骤 4:HTML 模板创建"
      },
      "typeVersion": 1
    },
    {
      "id": "225534ff-724a-4009-8886-add1b3bb63e4",
      "name": "便签6",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1520,
        -176
      ],
      "parameters": {
        "color": 5,
        "width": 364,
        "height": 385,
        "content": "## 📄 步骤 5:PDF 生成"
      },
      "typeVersion": 1
    },
    {
      "id": "defd69e1-8347-4418-914e-5808e0d0440e",
      "name": "下载 PDF 二进制数据",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        2016,
        64
      ],
      "parameters": {
        "url": "={{ $json.pdf_url }}",
        "options": {
          "response": {
            "response": {
              "responseFormat": "file"
            }
          }
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "d4be989c-6907-4a51-84ff-60ddc8f3747a",
      "name": "便签7",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1904,
        -144
      ],
      "parameters": {
        "color": 5,
        "width": 332,
        "height": 333,
        "content": "## 💾 步骤 6:下载 PDF"
      },
      "typeVersion": 1
    },
    {
      "id": "d6e3ca94-dd1f-425b-91ab-e9c060102c07",
      "name": "发送个人资料邮件 - Gmail",
      "type": "n8n-nodes-base.gmail",
      "position": [
        2336,
        64
      ],
      "webhookId": "",
      "parameters": {
        "sendTo": "={{ $('Webhook - Receive User Data').item.json.body.email }}",
        "message": "=<!DOCTYPE html>\n<html>\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n</head>\n<body style=\"margin: 0; padding: 0; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\">\n  \n  <!-- Main Container -->\n  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 40px 20px;\">\n    <tr>\n      <td align=\"center\">\n        \n        <!-- Content Card -->\n        <table width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"background: #ffffff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); overflow: hidden;\">\n          \n          <!-- Header Section with Icon -->\n          <tr>\n            <td style=\"background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 40px; text-align: center;\">\n              <div style=\"background: rgba(255,255,255,0.2); width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(10px);\">\n                <span style=\"font-size: 48px;\">✅</span>\n              </div>\n              <h1 style=\"color: #ffffff; margin: 0; font-size: 32px; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.1);\">Profile Verified!</h1>\n              <p style=\"color: rgba(255,255,255,0.9); margin: 10px 0 0 0; font-size: 16px;\">Your account has been successfully verified</p>\n            </td>\n          </tr>\n          \n          <!-- Greeting Section -->\n          <tr>\n            <td style=\"padding: 40px 40px 20px 40px;\">\n              <h2 style=\"color: #1f2937; margin: 0 0 20px 0; font-size: 24px; font-weight: 600;\">\n                Hi {{ $('Webhook - Receive User Data').item.json.body.name }} 👋\n              </h2>\n              <p style=\"color: #4b5563; line-height: 1.8; font-size: 16px; margin: 0 0 20px 0;\">\n                Congratulations! Your profile has been <strong style=\"color: #667eea;\">successfully verified</strong> and is now active. Your personalized profile PDF is ready and attached to this email.\n              </p>\n            </td>\n          </tr>\n          \n          <!-- Profile Details Card -->\n          <tr>\n            <td style=\"padding: 0 40px 30px 40px;\">\n              <div style=\"background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); border-radius: 12px; padding: 30px; border-left: 4px solid #667eea;\">\n                <h3 style=\"color: #1f2937; margin: 0 0 20px 0; font-size: 18px; font-weight: 600; display: flex; align-items: center;\">\n                  <span style=\"background: #667eea; color: white; width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-right: 12px; font-size: 16px;\">📋</span>\n                  Your Profile Details\n                </h3>\n                \n                <!-- Profile Items -->\n                <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                  <tr>\n                    <td style=\"padding: 12px 0; border-bottom: 1px solid #d1d5db;\">\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                        <tr>\n                          <td style=\"width: 40px; vertical-align: top;\">\n                            <span style=\"font-size: 20px;\">👤</span>\n                          </td>\n                          <td>\n                            <div style=\"color: #6b7280; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;\">Full Name</div>\n                            <div style=\"color: #1f2937; font-size: 16px; font-weight: 600;\">{{ $('Webhook - Receive User Data').item.json.body.name }}</div>\n                          </td>\n                        </tr>\n                      </table>\n                    </td>\n                  </tr>\n                  \n                  <tr>\n                    <td style=\"padding: 12px 0; border-bottom: 1px solid #d1d5db;\">\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                        <tr>\n                          <td style=\"width: 40px; vertical-align: top;\">\n                            <span style=\"font-size: 20px;\">📧</span>\n                          </td>\n                          <td>\n                            <div style=\"color: #6b7280; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;\">Email Address</div>\n                            <div style=\"color: #1f2937; font-size: 16px; font-weight: 600;\">{{ $('Webhook - Receive User Data').item.json.body.email }}</div>\n                          </td>\n                        </tr>\n                      </table>\n                    </td>\n                  </tr>\n                  \n                  <tr>\n                    <td style=\"padding: 12px 0; border-bottom: 1px solid #d1d5db;\">\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                        <tr>\n                          <td style=\"width: 40px; vertical-align: top;\">\n                            <span style=\"font-size: 20px;\">📍</span>\n                          </td>\n                          <td>\n                            <div style=\"color: #6b7280; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;\">Location</div>\n                            <div style=\"color: #1f2937; font-size: 16px; font-weight: 600;\">{{ $('Webhook - Receive User Data').item.json.body.city }}</div>\n                          </td>\n                        </tr>\n                      </table>\n                    </td>\n                  </tr>\n                  \n                  <tr>\n                    <td style=\"padding: 12px 0;\">\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                        <tr>\n                          <td style=\"width: 40px; vertical-align: top;\">\n                            <span style=\"font-size: 20px;\">💼</span>\n                          </td>\n                          <td>\n                            <div style=\"color: #6b7280; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;\">Profession</div>\n                            <div style=\"color: #1f2937; font-size: 16px; font-weight: 600;\">{{ $('Webhook - Receive User Data').item.json.body.profession }}</div>\n                          </td>\n                        </tr>\n                      </table>\n                    </td>\n                  </tr>\n                </table>\n              </div>\n            </td>\n          </tr>\n          \n          <!-- PDF Attachment Notice -->\n          <tr>\n            <td style=\"padding: 0 40px 30px 40px;\">\n              <div style=\"background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); border-radius: 12px; padding: 20px; border: 2px solid #10b981; text-align: center;\">\n                <span style=\"font-size: 32px; display: block; margin-bottom: 10px;\">📎</span>\n                <p style=\"color: #065f46; margin: 0; font-size: 16px; font-weight: 600;\">\n                  Your Profile PDF is attached to this email\n                </p>\n                <p style=\"color: #047857; margin: 8px 0 0 0; font-size: 14px;\">\n                  Download and save it for your records\n                </p>\n              </div>\n            </td>\n          </tr>\n          \n          <!-- What's Next Section -->\n          <tr>\n            <td style=\"padding: 0 40px 40px 40px;\">\n              <h3 style=\"color: #1f2937; margin: 0 0 16px 0; font-size: 18px; font-weight: 600;\">What's Next? 🚀</h3>\n              <ul style=\"margin: 0; padding: 0 0 0 20px; color: #4b5563; line-height: 1.8;\">\n                <li style=\"margin-bottom: 8px;\">Access your dashboard and complete your profile</li>\n                <li style=\"margin-bottom: 8px;\">Explore all available features and tools</li>\n                <li style=\"margin-bottom: 8px;\">Connect with our community</li>\n                <li>Start your journey with us today!</li>\n              </ul>\n            </td>\n          </tr>\n          \n          <!-- Footer Section -->\n          <tr>\n            <td style=\"background: #f9fafb; padding: 30px 40px; border-top: 1px solid #e5e7eb;\">\n              <p style=\"color: #1f2937; margin: 0 0 20px 0; font-size: 16px; line-height: 1.6;\">\n                Thank you for registering with us! We're excited to have you on board. 🎉\n              </p>\n              <p style=\"color: #6b7280; margin: 0; font-size: 14px; line-height: 1.6;\">\n                If you have any questions or need assistance, feel free to reach out to our support team.\n              </p>\n              \n              <!-- Signature -->\n              <div style=\"margin-top: 24px; padding-top: 24px; border-top: 1px solid #e5e7eb;\">\n                <p style=\"color: #1f2937; margin: 0 0 4px 0; font-size: 15px; font-weight: 600;\">\n                  Best regards,\n                </p>\n                <p style=\"color: #667eea; margin: 0; font-size: 15px; font-weight: 700;\">\n                  The Verification Team\n                </p>\n              </div>\n            </td>\n          </tr>\n          \n          <!-- Social Links / Contact Info (Optional) -->\n          <tr>\n            <td style=\"background: #1f2937; padding: 20px 40px; text-align: center;\">\n              <p style=\"color: #9ca3af; margin: 0; font-size: 12px;\">\n                © 2025 Your Company Name. All rights reserved.\n              </p>\n              <p style=\"color: #6b7280; margin: 8px 0 0 0; font-size: 11px;\">\n                This is an automated message. Please do not reply to this email.\n              </p>\n            </td>\n          </tr>\n          \n        </table>\n        \n      </td>\n    </tr>\n  </table>\n  \n</body>\n</html>",
        "options": {
          "attachmentsUi": {
            "attachmentsBinary": [
              {}
            ]
          }
        },
        "subject": "Your Verified Profile PDF is Ready ✅"
      },
      "credentials": {
        "gmailOAuth2": {
          "id": "YOUR_GMAIL_OAUTH2_ID",
          "name": "Gmail account OAuth2"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "382aabcc-1bee-4536-845c-caf8bcef2522",
      "name": "便签8",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        2256,
        -192
      ],
      "parameters": {
        "color": 5,
        "width": 368,
        "height": 423,
        "content": "## 📧 步骤 7:邮件发送"
      },
      "typeVersion": 1
    },
    {
      "id": "e8c9e5b1-7c63-49e3-acc4-bd390a0349f9",
      "name": "记录到 Google Sheets",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        2736,
        64
      ],
      "parameters": {
        "columns": {
          "value": {
            "City": "={{ $('Webhook - Receive User Data').item.json.body.city }}",
            "Date": "={{ new Date().toLocaleDateString('en-US') }}",
            "Name": "={{ $('Webhook - Receive User Data').item.json.body.name }}",
            "Email": "={{ $('Webhook - Receive User Data').item.json.body.email }}",
            "Verified": "✅",
            "Profession": "={{ $('Webhook - Receive User Data').item.json.body.profession }}"
          },
          "schema": [
            {
              "id": "Name",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Name",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Email",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "Email",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "City",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "City",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Profession",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Profession",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Verified",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Verified",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Date",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "Date",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [
            "Email"
          ],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "appendOrUpdate",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": "gid=0",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/YOUR_GOOGLE_SHEETS_DOCUMENT_ID/edit#gid=0",
          "cachedResultName": "Sheet1"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "YOUR_GOOGLE_SHEETS_DOCUMENT_ID",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/YOUR_GOOGLE_SHEETS_DOCUMENT_ID/edit?usp=drivesdk",
          "cachedResultName": "Verified_Users_Profiles"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "YOUR_GOOGLE_SHEETS_OAUTH2_ID",
          "name": "Google Sheets account OAuth2"
        }
      },
      "typeVersion": 4.4
    },
    {
      "id": "a21a9553-ff14-4184-a9ea-01a213d9df07",
      "name": "便签9",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        2640,
        -224
      ],
      "parameters": {
        "color": 5,
        "width": 380,
        "height": 448,
        "content": "## 📊 步骤 8:数据记录"
      },
      "typeVersion": 1
    },
    {
      "id": "7795da16-16bd-485f-a44f-6880253dcfde",
      "name": "发送拒绝邮件 - Gmail",
      "type": "n8n-nodes-base.gmail",
      "position": [
        1648,
        352
      ],
      "webhookId": "",
      "parameters": {
        "sendTo": "={{ $('Webhook - Receive User Data').item.json.body.email }}",
        "message": "=<h3>Hi {{ $('Webhook - Receive User Data').item.json.body.name }},</h3>\n<p>We couldn't verify your email address: <strong>{{ $('Webhook - Receive User Data').item.json.body.email }}</strong></p>\n<p>This could be due to:</p>\n<ul>\n  <li>Invalid email format</li>\n  <li>Non-existent email domain</li>\n  <li>Temporary email service</li>\n  <li>Disposable email address</li>\n</ul>\n<p><strong>What to do next:</strong></p>\n<p>Please check your email address and try registering again with a valid email.</p>\n<p>If you believe this is an error, please contact our support team.</p>\n<p style=\"color: #666; margin-top: 20px;\">– The Verification Team</p>",
        "options": {},
        "subject": "Profile Verification Failed ❌"
      },
      "credentials": {
        "gmailOAuth2": {
          "id": "YOUR_GMAIL_OAUTH2_ID",
          "name": "Gmail account OAuth2"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "6349b52f-f398-49be-9847-6280a023639a",
      "name": "便签 10",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1536,
        336
      ],
      "parameters": {
        "color": 5,
        "width": 372,
        "height": 560,
        "content": "## 🚫 步骤 9:无效邮箱处理"
      },
      "typeVersion": 1
    },
    {
      "id": "26712fee-42f0-4c18-b345-aeed77bfc290",
      "name": "便签11",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        3040,
        -112
      ],
      "parameters": {
        "color": 4,
        "width": 368,
        "height": 336,
        "content": "## ✅ 工作流完成!"
      },
      "typeVersion": 1
    },
    {
      "id": "b91d5210-1e6b-4ee4-9217-5ac7c9760fba",
      "name": "Verifi Email",
      "type": "n8n-nodes-verifiemail.verifiEmail",
      "position": [
        656,
        224
      ],
      "parameters": {
        "email": "={{ $json.body.email }}"
      },
      "credentials": {
        "verifiEmailApi": {
          "id": "YOUR_VERIFI_EMAIL_API_ID",
          "name": "VerifiEmail API"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "1b44d9a8-e00d-4400-a00b-8c45b3dabea4",
      "name": "HTML 转 PDF",
      "type": "n8n-nodes-htmlcsstopdf.htmlcsstopdf",
      "position": [
        1600,
        64
      ],
      "parameters": {
        "html_content": "={{ $json.html_content }}"
      },
      "credentials": {
        "htmlcsstopdfApi": {
          "id": "YOUR_HTML_TO_PDF_API_ID",
          "name": "HTML to PDF account API"
        }
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "",
  "connections": {
    "HTML to PDF": {
      "main": [
        [
          {
            "node": "Download PDF Binary",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Verifi Email": {
      "main": [
        [
          {
            "node": "IF Email Valid?",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "IF Email Valid?": {
      "main": [
        [
          {
            "node": "Generate HTML Template",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Send Rejection Email - Gmail",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Download PDF Binary": {
      "main": [
        [
          {
            "node": "Send Profile Email - Gmail",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Generate HTML Template": {
      "main": [
        [
          {
            "node": "HTML to PDF",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Send Profile Email - Gmail": {
      "main": [
        [
          {
            "node": "Log to Google Sheets",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Webhook - Receive User Data": {
      "main": [
        [
          {
            "node": "Verifi Email",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

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

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

高级 - 文档提取

需要付费吗?

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

工作流信息
难度等级
高级
节点数量20
分类1
节点类型9
难度说明

适合高级用户,包含 16+ 个节点的复杂工作流

作者
Jitesh Dugar

Jitesh Dugar

@jiteshdugar

AI Automation Specialist - OpenAI, CRM & Automation Expert with a solid understanding of various tools that include Zapier, Make, Zoho CRM, Hubspot, Google Sheets, Airtable, Pipedrive, Google Analytics, and more.

外部链接
在 n8n.io 查看

分享此工作流