使用Dumpling AI和GPT-4从LinkedIn个人资料生成冷邮件

中级

这是一个Content Creation、Multimodal AI领域的自动化工作流,包含 7 个节点。主要使用 Gmail、Airtable、Dropcontact、FormTrigger、HttpRequest 等节点。 LinkedIn转Gmail:使用Dumpling AI、GPT-4和Dropcontact生成冷邮件

前置要求
  • Google 账号和 Gmail API 凭证
  • Airtable API Key
  • 可能需要目标 API 的认证凭证
  • OpenAI API Key
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "id": "qDoihlcvYfyAieir",
  "meta": {
    "instanceId": "a1ae5c8dc6c65e674f9c3947d083abcc749ef2546dff9f4ff01de4d6a36ebfe6",
    "templateCredsSetupCompleted": true
  },
  "name": "使用Dumpling AI和GPT-4从LinkedIn个人资料生成冷邮件",
  "tags": [],
  "nodes": [
    {
      "id": "7de66b30-526f-4eb1-ac77-5cae046911ae",
      "name": "LinkedIn个人资料提交触发器",
      "type": "n8n-nodes-base.formTrigger",
      "position": [
        -480,
        32
      ],
      "webhookId": "86c63411-8bcd-417c-9c2b-065d165bd0b3",
      "parameters": {
        "options": {},
        "formTitle": "Linkedin profile",
        "formFields": {
          "values": [
            {
              "fieldLabel": "profile URL"
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "debcc3e2-04b5-4525-a45b-abea748d86bb",
      "name": "提取公司信息(Dumpling AI)",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        -272,
        32
      ],
      "parameters": {
        "url": "https://app.dumplingai.com/api/v1/linkedin/company",
        "method": "POST",
        "options": {},
        "jsonBody": "={\n  \"url\":\"{{ $json['profile URL'] }}\"\n} ",
        "sendBody": true,
        "specifyBody": "json",
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth"
      },
      "credentials": {
        "httpHeaderAuth": {
          "id": "RLFzAcGRepr5eXZB",
          "name": "Dumpling AI-n8n"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "3679ae6f-f0f9-4210-9d54-599693845002",
      "name": "丰富联系人信息(Dropcontact)",
      "type": "n8n-nodes-base.dropcontact",
      "position": [
        -64,
        32
      ],
      "parameters": {
        "options": {
          "waitTime": 60
        },
        "additionalFields": {
          "country": "={{ $json.location.country }}",
          "website": "={{ $json.website }}",
          "linkedin": "={{ $json.url }}",
          "full_name": "={{ $json.name }}"
        }
      },
      "credentials": {
        "dropcontactApi": {
          "id": "agj3ZD0hSVoXEMvl",
          "name": "Dropcontact account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "12334649-93b9-488a-ac12-48054e5821e0",
      "name": "生成冷邮件(GPT-4)",
      "type": "@n8n/n8n-nodes-langchain.openAi",
      "position": [
        144,
        32
      ],
      "parameters": {
        "modelId": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4.1",
          "cachedResultName": "GPT-4.1"
        },
        "options": {},
        "messages": {
          "values": [
            {
              "role": "system",
              "content": "=You are an expert cold email copywriter for a digital marketing agency called BrightPath Digital.\nYour task is to take the lead details provided and generate two things:\n1. A personalized subject line that feels relevant to them and sparks curiosity, no longer than eight words.\n2. A short cold email of four to six sentences in HTML that starts with a natural ice breaker about them or their company, introduces BrightPath Digital’s services, highlights how we help businesses grow through increased visibility and qualified leads and better campaign performance, and ends with a light call to action. The email must always end with the signature block shown below.\n\nGuidelines:\nUse the lead’s name in the greeting.\nConnect the ice breaker directly to the company description so it feels tailored.\nKeep the tone professional, warm, and human.\nAvoid buzzwords and robotic phrases.\nWrite in clear simple English.\nKeep the total email under one hundred and twenty words.\nAlways include this exact signature block at the end of the HTML:\n<p>Best regards,<br>BrightPath Digital</p>\n\n\nOutput must be strict JSON with no extra text. Return exactly this structure:\n{\n  \"subject\": \"Personalized subject line here\",\n  \"email\": \"<p>Greeting that uses the lead’s name.</p><p>Ice breaker tied to the company description.</p><p>Brief introduction of BrightPath Digital and how we help.</p><p>Simple call to action asking for a quick chat.</p><p>Best regards,<br>BrightPath Digital</p>\"\n}\n"
            },
            {
              "content": "=Input fields you will receive:  \n- Name: {{ $json.full_name }}\n- Company Description: {{ $('Extract Company Info (Dumpling AI)').item.json.description }}"
            }
          ]
        },
        "jsonOutput": true
      },
      "credentials": {
        "openAiApi": {
          "id": "dd8NvMC6rvx8RITo",
          "name": "OpenAi account 2"
        }
      },
      "typeVersion": 1.8
    },
    {
      "id": "45f9c532-3991-41e7-bf8a-6613e8399580",
      "name": "通过Gmail发送冷邮件",
      "type": "n8n-nodes-base.gmail",
      "position": [
        496,
        32
      ],
      "webhookId": "0c7ad6bd-4d14-4a36-bfc6-32dec4a64ce4",
      "parameters": {
        "sendTo": "=example@gmail.com",
        "message": "={{ $json.message.content.email }}",
        "options": {
          "appendAttribution": false
        },
        "subject": "={{ $json.message.content.subject }}"
      },
      "credentials": {
        "gmailOAuth2": {
          "id": "j70r3RTMED1pgN3R",
          "name": "Gmail account 2"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "db20873e-d1b8-4823-b33c-1160aaa9442e",
      "name": "将潜在客户记录到Airtable",
      "type": "n8n-nodes-base.airtable",
      "position": [
        704,
        32
      ],
      "parameters": {
        "base": {
          "__rl": true,
          "mode": "list",
          "value": "",
          "cachedResultUrl": "https://airtable.com/apppDyB7Z8ON9zzXu",
          "cachedResultName": "LinkedIn leads "
        },
        "table": {
          "__rl": true,
          "mode": "list",
          "value": "",
          "cachedResultUrl": "https://airtable.com/apppDyB7Z8ON9zzXu/tblhKKHU9zXnpWjs1",
          "cachedResultName": "leads"
        },
        "columns": {
          "value": {
            "Name": "={{ $('Extract Company Info (Dumpling AI)').item.json.name }}",
            "People": "={{ $('Extract Company Info (Dumpling AI)').item.json.employeeCount }}",
            "website": "={{ $('Extract Company Info (Dumpling AI)').item.json.website }}",
            "LinkedIn Company URL": "={{ $('Extract Company Info (Dumpling AI)').item.json.url }}"
          },
          "schema": [
            {
              "id": "Name",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "Name",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "LinkedIn Company URL",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "LinkedIn Company URL",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "People",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "People",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "website",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "website",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Company Analysis",
              "type": "string",
              "display": true,
              "removed": false,
              "readOnly": false,
              "required": false,
              "displayName": "Company Analysis",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "create"
      },
      "credentials": {
        "airtableTokenApi": {
          "id": "hX3wPN3fUWW9Ctx9",
          "name": "Airtable Personal Access Token account 2"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "24303ff7-9cd6-496b-865c-f59cde103ce9",
      "name": "便签",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -496,
        -304
      ],
      "parameters": {
        "width": 624,
        "height": 464,
        "content": "## ✉️ 使用AI从LinkedIn个人资料生成并发送冷邮件"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {
    "Send Cold Email via Gmail": [
      {
        "json": {
          "id": "19982af83cab2ad2",
          "labelIds": [
            "UNREAD",
            "SENT",
            "INBOX"
          ],
          "threadId": "19982af83cab2ad2"
        }
      }
    ],
    "Enrich Contact (Dropcontact)": [
      {
        "json": {
          "email": [
            {
              "email": "schneider.electric@se.com",
              "qualification": "nominative@pro"
            }
          ],
          "phone": "+33 4 76 57 60 60",
          "company": "SE",
          "country": "France",
          "website": "www.se.com",
          "civility": "Mr",
          "full_name": "Schneider Electric",
          "last_name": "Electric",
          "first_name": "Schneider"
        }
      }
    ],
    "Extract Company Info (Dumpling AI)": [
      {
        "json": {
          "url": "https://fr.linkedin.com/company/schneider-electric",
          "logo": "https://media.licdn.com/dms/image/v2/C4E0BAQGNfeTPCu6Z-w/company-logo_200_200/company-logo_200_200/0/1631312208065?e=2147483647&v=beta&t=vrp7rgVnvX22xjmuGe3mWGrSlUu4Xn0F13vbZLaCHQE",
          "name": "Schneider Electric",
          "size": "10,001+ employees",
          "type": "Public Company",
          "posts": [
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_impactcompany-activity-7373626857625317376-LWdN",
              "text": "Earlier this year, we had the honor to be named Most Sustainable Company by Corporate Knights for the second time, a first for any company. Adding to this, a couple of months ago we were also recognized again by TIME Magazine & Statista, for the second time.\n\nWe’ve asked our EVP France Operations, Laurent Bataille : “What does it take to become the world’s most sustainable company?” For him, sustainability is a long-term adventure.\n\nFor more than 20 years, sustainability has guided our choices and shaped our strategy. “I think that behind this success lies a cultural aspect,” says Laurent. At Schneider Electric we have a real understanding of the effect we have on our ecosystems and stakeholders. “We are both a solution provider and diligent in-house practitioner,” he adds.\n\nDigitalization, AI, climate change, energy transition, the evolution of global wealth and balance… these are our next frontiers. So many challenges, so many opportunities to continue to grow, innovate, and make an impact.\n\nJoin us on this journey. Learn more about becoming an #ImpactCompany: http://spr.ly/6009AzPqx",
              "datePublished": "2025-09-16T08:00:38.198Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_sustainablegrowth-cmoblueprint-marketingwithpurpose-activity-7376918438583296000-hKXe",
              "text": "In our journey to drive growth with purpose, we’re rethinking how technology can serve both business and the planet. 🌍\n\nThe United Nations Global Compact’s CMO Blueprint for Sustainable Growth highlights the pivotal role CMOs play in aligning strategy with the SDGs to deliver meaningful impact. At Schneider Electric, we believe marketing plays a big part in driving adoption of sustainable innovation.\n\nTake our AirSeT medium-voltage switchgear: it replaces SF₆ – a potent greenhouse gas – with pure air, delivering the same high performance with significantly lower environmental impact. Each installation avoids 75,000 kg of CO₂e emissions and offers up to 30% savings in maintenance costs.\n\nTo accelerate adoption, marketing must:\n✅ Make sustainability core to growth for business and society\n✅ Build purposeful brands on real action to earn lasting trust\n✅ Drive innovation that meets regulations and advances sustainability\n✅ Communicate clearly and inclusively, backed by data, to inspire change\n✅ Partner strategically to amplify impact across industries\n\nDive into our story and other sustainable marketing strategies: http://spr.ly/6045AZbVH\n\n#SustainableGrowth #CMOBlueprint #MarketingWithPurpose #ImpactCompany",
              "datePublished": "2025-09-25T10:00:12.246Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_prefab-modular-ecostruxure-pod-data-center-activity-7376918438390300672-Q2A6",
              "text": "Accelerate AI data center deployment with our Prefabricated Modular EcoStruxure™ Pod Data Center.\n\nEngineered for speed, scalability, and flexibility, it supports up to 42 high-density racks per pod with hybrid liquid-air cooling. Preconfigured and factory-tested, it ensures predictable performance, reduced CapEx, and rapid time-to-market—ideal for hyperscale, cloud, and AI-driven environments.\n\nExplore our 3D Sketchfab model to learn more: http://spr.ly/6049AKqSH\n\n#DataCentersoftheFuture #EcoStruxurePod",
              "datePublished": "2025-09-25T10:00:12.201Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_digitaltransformation-activity-7376918437744259072-cn75",
              "text": "Unlock industrial success with quality-first strategies.\n\nDigital transformation and quality management can reveal hidden costs, boost efficiency, and build resilience.\n\nExplore Schneider Electric’s eGuide for smarter quality management http://spr.ly/6041Aw5iF #DigitalTransformation",
              "datePublished": "2025-09-25T10:00:12.039Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_impactstartswithus-activity-7376904319666774016-2-ER",
              "text": "What makes India a magnet for global leadership and innovation?\n\nIn this video, three of our leaders share their perspectives on India as a growth hub—capturing the spirit of transformation, opportunity, and purpose that defines the India experience.\n\nFrom dynamic markets to a thriving talent ecosystem, discover why India is the place to build, lead, and grow.\n\nReady to be part of the India Talent Quest? Register now: http://spr.ly/6046f5niK #ImpactStartsWithUs",
              "datePublished": "2025-09-25T09:04:06.036Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_energy-efficiency-path-to-ai-inference-activity-7376835393058508801-DnWK",
              "text": "AI training gets the headlines, but inference is where the real value lies.\n\nOnce models are trained, running them efficiently on new data is what drives automation, insights, and business impact.\n\nThe challenge? Many inference workloads still run on oversized training clusters—like using 800 GPUs when 8 would do.\n\nAs AI adoption grows, the winners will be those who optimize inference by cutting costs, right-sizing infrastructure, and scaling sustainably: http://spr.ly/6001ApwJz\n\n#EnergyEfficiency",
              "datePublished": "2025-09-25T04:30:12.648Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_we-are-proud-to-announce-that-schneider-electric-activity-7376825324304666624-pAT1",
              "text": "We are proud to announce that Schneider Electric has been recognized on the Fortune 2025 Change the World List 🎉\nThis honor celebrates our commitment to protecting the environment and creating a positive social impact through our innovative and sustainable practices.\nWe remain dedicated to making meaningful impact for people and the planet. Explore the full list here: http://spr.ly/6049Aw03W",
              "datePublished": "2025-09-25T03:50:12.066Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_innovation-sustainability-ai-activity-7376712128717742080-tu_-",
              "text": "Innovation is at the heart of sustainability. Farrukh Shad, Head of Sustainability Business, APAC & MEA, explains at Bloomberg’s Sustainable Business Summit Singapore how we leverages AI and data to turn sustainability from a reporting exercise into a strategic advantage.\n\nWatch here: http://spr.ly/6003AwN0F\n\n#Innovation #Sustainability #AI",
              "datePublished": "2025-09-24T20:20:24.137Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_lifeison-activity-7376586248867463168-kX03",
              "text": "Electric mobility is accelerating and so are we.\n\nWe’ve just launched a dedicated page showcasing our fast charging solutions for electric vehicles, designed to meet the needs of residential, commercial, and fleet environments.\n\nWhat you’ll find:\n- Reliable AC and DC charging technologies\n- Smart energy management for cost and performance optimization\n- Seamless integration with energy storage and management systems\n- Full compliance with international safety standards\n\nThis new resource is built for mobility players looking to scale their energy transition with robust and future-ready solutions.\n\n➡️ Explore the page here: http://spr.ly/6043AkMaT\n\n#LifeIsOn",
              "datePublished": "2025-09-24T12:00:12.048Z"
            },
            {
              "url": "https://www.linkedin.com/posts/schneider-electric_innovation-summit-2025-activity-7376586247709831170-ma78",
              "text": "Copenhagen inspires bold thinking and breakthrough ideas. Connect with the minds driving meaningful transformation at Innovation Summit, October 22–23. http://spr.ly/6043Aw59l\n\n#InnovationSummit2025",
              "datePublished": "2025-09-24T12:00:11.760Z"
            }
          ],
          "handle": "schneider-electric",
          "founded": null,
          "funding": {
            "investors": [],
            "lastRound": {
              "date": "2025-09-26T00:00:00.000Z",
              "type": "Post IPO debt",
              "amount": "US$ 4.1B"
            },
            "numberOfRounds": 3
          },
          "success": true,
          "website": "https://www.se.com/",
          "industry": "Automation Machinery Manufacturing",
          "location": {
            "city": "Rueil Malmaison",
            "state": "Paris",
            "country": "FR"
          },
          "employees": [
            {
              "link": "https://www.linkedin.com/in/darin-clark",
              "name": "Darin Clark",
              "image": "https://media.licdn.com/dms/image/v2/D5603AQHhAV8cJTwndA/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1729356565688?e=2147483647&v=beta&t=P9oVlHEMIbzd8gJja-E7zfF_oyHA3L1eOVmBDiGs-a0",
              "title": ""
            },
            {
              "link": "https://www.linkedin.com/in/schneidercm",
              "name": "Claude Mukaisu",
              "image": "https://media.licdn.com/dms/image/v2/D5603AQG1nx_IL67UYw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1725320765533?e=2147483647&v=beta&t=kZxxYwLiDlASsKPhX7NsSF32Cr3qsclfGMbZ7Rn0se0",
              "title": "Principal Project Application Engineer at Schneider Electric"
            },
            {
              "link": "https://ca.linkedin.com/in/stevenjavor",
              "name": "Steven Javor",
              "image": "https://media.licdn.com/dms/image/v2/C4E03AQEp0Vb-8Ml7Kw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1516162018957?e=2147483647&v=beta&t=YOxkYHWjRLCGw8hOJE9xj6wlF6RcQVL1gCHeVtjddkE",
              "title": "Accomplished eCommerce & eBusiness Executive Leader | Digital Transformation | Educator  | Speaker | Panelist"
            },
            {
              "link": "https://ae.linkedin.com/in/tarunjeetsarao",
              "name": "Tarunjeet Sarao",
              "image": "https://media.licdn.com/dms/image/v2/C5603AQGm8lod8riH8A/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1625204440213?e=2147483647&v=beta&t=oEoHdZFoQKCfnDmbBnrluWTHqTfIkWykNf7eZAh65Po",
              "title": "Transforming the Data Center Industry | SVP, Leading Global Teams Across Innovation, Product, and Growth | Championing Scalable, Sustainable, AI…"
            }
          ],
          "followers": 5098559,
          "description": "Schneider’s purpose is to create Impact by empowering all to make the most of our energy and resources, bridging progress and sustainability. At Schneider, we call this Life Is On.\n\nOur mission is to be the trusted partner in Sustainability and Efficiency.\n\nWe are a global industrial technology leader bringing world-leading expertise in electrification, automation and digitization to smart industries, resilient infrastructure, future-proof data centers, intelligent buildings, and intuitive homes. Anchored by our deep domain expertise, we provide integrated end-to-end lifecycle AI enabled Industrial IoT solutions with connected products, automation, software and services, delivering digital twins to enable profitable growth for our customers.\n\nWe are a people company with an ecosystem of 168,000 colleagues and more than a million partners operating in over 100 countries to ensure proximity to our customers and stakeholders. We embrace diversity and inclusion in everything we do, guided by our meaningful purpose of a sustainable future for all.\n\nwww.se.com\n\nFollow us on:\nhttps://www.facebook.com/SchneiderElectric\nhttps://www.x.com/SchneiderElec\nhttps://www.x.com/SE_Careers\nhttps://www.instagram.com/schneiderelectric\nhttps://www.youtube.com/schneiderelectric\nhttps://www.tiktok.com/@schneiderelectric_global",
          "specialties": [
            "Industrial Automation",
            "Energy Management",
            "Digital Automation",
            "Sustainability",
            "Innovation",
            "Digitalization",
            "Artificial Intelligence",
            "Engineering",
            "Cybersecurity",
            "Renewables",
            "Digital Supply Chain",
            "Manufacturing",
            "Electrification",
            "Building Management Systems",
            "Power Systems and Services",
            "Microgrids",
            "Industrial Software Design and Optimization",
            "Prosumer",
            "Solar and Energy Storage",
            "Services",
            "and Software-centric Automation & Solutions"
          ],
          "headquarters": "Rueil Malmaison, Paris",
          "similarPages": [
            {
              "link": "https://de.linkedin.com/company/siemens",
              "name": "Siemens",
              "image": "https://media.licdn.com/dms/image/v2/D4D0BAQFK_4wGnzwPTQ/company-logo_100_100/company-logo_100_100/0/1719931174735/siemens_logo?e=2147483647&v=beta&t=iNZVOYYuYOnkz09IBCFrK9Ik8uTqP6ZDnhCEJjPouV4"
            },
            {
              "link": "https://ch.linkedin.com/company/abb",
              "name": "ABB",
              "image": "https://media.licdn.com/dms/image/v2/C4D0BAQHPGAMgqJMBZQ/company-logo_100_100/company-logo_100_100/0/1630579606103/abb_logo?e=2147483647&v=beta&t=UOAvwz5s6liS099z91BNomM-lOY3CC7ClOAVlUTpdR8"
            },
            {
              "link": "https://www.linkedin.com/company/honeywell",
              "name": "Honeywell",
              "image": "https://media.licdn.com/dms/image/v2/C560BAQFvcIh3UnA5zw/company-logo_100_100/company-logo_100_100/0/1630621634841/honeywell_logo?e=2147483647&v=beta&t=el5CyUz5n_qzua6OscZ-xQrU1xJg3xcD4x0QQIEAGaU"
            },
            {
              "link": "https://www.linkedin.com/company/siemens-energy",
              "name": "Siemens Energy",
              "image": "https://media.licdn.com/dms/image/v2/D4E0BAQHJrmcq29R6nA/company-logo_100_100/B4EZfEvuGOGwAQ-/0/1751352533824/siemens_energy_logo?e=2147483647&v=beta&t=AZ1foBZGusbDa1QrHqsc4J3zlTv3NdMDaqMUalxDhzQ"
            },
            {
              "link": "https://ie.linkedin.com/company/eaton",
              "name": "Eaton",
              "image": "https://media.licdn.com/dms/image/v2/C4E0BAQFlHTyFXVYarg/company-logo_100_100/company-logo_100_100/0/1630597759539/eaton_logo?e=2147483647&v=beta&t=mf1Y9QMDbkpihH-1MCZClCRWIornoz2jPRUrNJfjMyk"
            },
            {
              "link": "https://ch.linkedin.com/company/hitachienergy",
              "name": "Hitachi Energy",
              "image": "https://media.licdn.com/dms/image/v2/D4E0BAQFORxmRRI944Q/company-logo_100_100/B4EZZZAW8eHUAY-/0/1745249989009/hitachienergy_logo?e=2147483647&v=beta&t=VsqridtWJ4m6Ag1RFvEKfYAhJ3YgA7IGLKySiMSreN0"
            },
            {
              "link": "https://www.linkedin.com/company/ge",
              "name": "GE",
              "image": "https://media.licdn.com/dms/image/v2/D4E0BAQHNSdSY_UJ_rg/company-logo_100_100/company-logo_100_100/0/1688184041602/ge_logo?e=2147483647&v=beta&t=e6VJzilpnDX14Fp0r9VT0csEt1CzTb9xuS6tbDnKl-w"
            },
            {
              "link": "https://www.linkedin.com/company/deloitte",
              "name": "Deloitte",
              "image": "https://media.licdn.com/dms/image/v2/C560BAQGNtpblgQpJoQ/company-logo_100_100/company-logo_100_100/0/1662120928214/deloitte_logo?e=2147483647&v=beta&t=OSF8M5LreT0Sf2F-JcNk6XMT0ArCuPfDmRR-knCC4HY"
            },
            {
              "link": "https://www.linkedin.com/company/emerson",
              "name": "Emerson",
              "image": "https://media.licdn.com/dms/image/v2/D4E0BAQGR6FSAnbBWcQ/company-logo_100_100/company-logo_100_100/0/1719847292094/emerson_logo?e=2147483647&v=beta&t=cQc4Xf708t7quqrf1BkItwvh_lWHbqa1ewpEYk_vZDw"
            },
            {
              "link": "https://www.linkedin.com/company/amazon",
              "name": "Amazon",
              "image": "https://media.licdn.com/dms/image/v2/C560BAQHTvZwCx4p2Qg/company-logo_100_100/company-logo_100_100/0/1630640869849/amazon_logo?e=2147483647&v=beta&t=QsC16wgE3EBriPFDlAgtToh2xndFwQWKmR2WcyMG1nk"
            }
          ],
          "employeeCount": 86251,
          "credits_remaining": 15966
        }
      }
    ],
    "Trigger on LinkedIn Profile Submission": [
      {
        "json": {
          "formMode": "test",
          "profile URL": "https://www.linkedin.com/company/schneider-electric",
          "submittedAt": "2025-09-25T07:39:38.011+10:00"
        }
      }
    ]
  },
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "75bcf111-8da1-4a09-8720-f172678b1c29",
  "connections": {
    "Send Cold Email via Gmail": {
      "main": [
        [
          {
            "node": "Log Lead to Airtable",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Generate Cold Email (GPT-4)": {
      "main": [
        [
          {
            "node": "Send Cold Email via Gmail",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Enrich Contact (Dropcontact)": {
      "main": [
        [
          {
            "node": "Generate Cold Email (GPT-4)",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Extract Company Info (Dumpling AI)": {
      "main": [
        [
          {
            "node": "Enrich Contact (Dropcontact)",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Trigger on LinkedIn Profile Submission": {
      "main": [
        [
          {
            "node": "Extract Company Info (Dumpling AI)",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

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

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

这是一个中级难度的工作流,适用于Content Creation、Multimodal AI等场景。适合有一定经验的用户,包含 6-15 个节点的中等复杂度工作流

需要付费吗?

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

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

适合有一定经验的用户,包含 6-15 个节点的中等复杂度工作流

外部链接
在 n8n.io 上查看 →

分享此工作流