使用 Icypeas 进行电子邮件验证(单个)
中级
这是一个Sales, Marketing领域的自动化工作流,包含 6 个节点。主要使用 Code, HttpRequest, ManualTrigger 等节点。 使用 Icypeas 验证单个邮箱地址
前置要求
- •可能需要目标 API 的认证凭证
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"id": "IwOOVikQC7cn9VTv",
"meta": {
"instanceId": "a897062ac3223eacd9c7736276b653c446bc776a63cde2a42a2949ad984f7092"
},
"name": "使用 Icypeas 进行电子邮件验证(单个)",
"tags": [],
"nodes": [
{
"id": "83105cfd-9107-4dae-8282-07c6594ebbd2",
"name": "当点击\"执行工作流\"时",
"type": "n8n-nodes-base.manualTrigger",
"position": [
1460,
460
],
"parameters": {},
"typeVersion": 1
},
{
"id": "7146ee71-e4fc-4c1f-bdbd-af1466525fef",
"name": "运行电子邮件验证(单个)",
"type": "n8n-nodes-base.httpRequest",
"position": [
2180,
460
],
"parameters": {
"url": "={{ $json.api.url }}",
"method": "POST",
"options": {},
"sendBody": true,
"sendHeaders": true,
"authentication": "genericCredentialType",
"bodyParameters": {
"parameters": [
{
"name": "email",
"value": "=uyqsdqkudhfiqudhfiqduhfiqdhfqif@gmail.com"
}
]
},
"genericAuthType": "httpHeaderAuth",
"headerParameters": {
"parameters": [
{
"name": "X-ROCK-TIMESTAMP",
"value": "={{ $json.api.timestamp }}"
}
]
}
},
"credentials": {
"httpHeaderAuth": {
"id": "KGXtUrqC6lNLwW2w",
"name": "Header Auth account"
}
},
"typeVersion": 4.1
},
{
"id": "1e004997-dfc6-45ad-9351-9a096cb4c991",
"name": "便签",
"type": "n8n-nodes-base.stickyNote",
"position": [
1280,
200
],
"parameters": {
"height": 250.2614840989399,
"content": "## 使用 Icypeas 进行电子邮件验证(单个)"
},
"typeVersion": 1
},
{
"id": "c56e06c9-971b-47ea-9c23-af639933479b",
"name": "便签1",
"type": "n8n-nodes-base.stickyNote",
"position": [
1607,
276
],
"parameters": {
"width": 506,
"height": 1030,
"content": "## 验证您的 Icypeas 账户"
},
"typeVersion": 1
},
{
"id": "0b0425b7-52e7-4d4c-8c7f-6fb4821b9ce1",
"name": "便签2",
"type": "n8n-nodes-base.stickyNote",
"position": [
2113,
280
],
"parameters": {
"width": 492,
"height": 748,
"content": "## 在您的 Icypeas 账户上执行电子邮件验证"
},
"typeVersion": 1
},
{
"id": "7784528c-863c-4940-9fe2-f257884a6a73",
"name": "验证您的 Icypeas 账户",
"type": "n8n-nodes-base.code",
"position": [
1800,
460
],
"parameters": {
"jsCode": "const BASE_URL = \"https://app.icypeas.com\";\nconst PATH = \"/api/email-verification\";\nconst METHOD = \"POST\";\n\n// Change here\nconst API_KEY = \"PUT_API_KEY_HERE\";\nconst API_SECRET = \"PUT_API_SECRET_HERE\";\nconst USER_ID = \"PUT_USER_ID_HERE\";\n////////////////\n\nconst genSignature = (\n path,\n method,\n secret,\n timestamp = new Date().toISOString()\n) => {\n const Crypto = require('crypto');\n const payload = `${method}${path}${timestamp}`.toLowerCase();\n const sign = Crypto.createHmac(\"sha1\", secret).update(payload).digest(\"hex\");\n\n return sign;\n};\n\nconst fullPath = `${BASE_URL}${PATH}`;\n$input.first().json.api = {\n timestamp: new Date().toISOString(),\n secret: API_SECRET,\n key: API_KEY,\n userId: USER_ID,\n url: fullPath,\n};\n$input.first().json.api.signature = genSignature(PATH, METHOD, API_SECRET, $input.first().json.api.timestamp);\nreturn $input.first();"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "39bdb71c-d7c4-4b1a-8e4f-938d30411190",
"connections": {
"When clicking \"Execute Workflow\"": {
"main": [
[
{
"node": "Authenticates to your Icypeas account",
"type": "main",
"index": 0
}
]
]
},
"Authenticates to your Icypeas account": {
"main": [
[
{
"node": "Run email verification (single)",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
中级 - 销售, 营销
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
使用 Icypeas 批量验证 Google Sheet 中的电子邮件
使用 Icypeas 批量验证 Google Sheet 中的电子邮件
Code
Http Request
Google Sheets
+2
8 节点Corentin Ribeyre
销售
使用Icypeas执行域名搜索(单次)
使用Icypeas执行域名搜索(单次)
Code
Http Request
Manual Trigger
+1
6 节点Corentin Ribeyre
销售
使用Icypeas执行电子邮件搜索(单个)
使用Icypeas执行电子邮件搜索(单个)
Code
Http Request
Manual Trigger
+1
6 节点Corentin Ribeyre
销售
使用Icypeas执行电子邮件搜索(批量)
使用Icypeas执行电子邮件搜索(批量)
Code
Http Request
Google Sheets
+2
8 节点Corentin Ribeyre
销售
AI个性化多产品邮件营销
基于SMTP轮换的AI个性化多产品邮件营销(GPT-4o/o3-mini)
If
Code
Wait
+16
41 节点Badr
销售
自动化潜在客户采集器:Apify到Google Sheets
通过数据清洗自动化从Apify到Google Sheets的商业线索采集
Set
Code
Http Request
+3
6 节点David Olusola
销售