This workflow corresponds to n8n.io template #903 — we link there as the canonical source.
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 →
{
"id": "144",
"name": "Discover Email",
"nodes": [
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"position": [
370,
470
],
"parameters": {},
"typeVersion": 1
},
{
"name": "Telegram",
"type": "n8n-nodes-base.telegram",
"position": [
940,
470
],
"parameters": {
"text": "=User {{$node[\"Get Email\"].json[\"params\"][\"firstname\"]}} {{$node[\"Get Email\"].json[\"params\"][\"lastname\"]}} has next email on {{$node[\"Get Email\"].json[\"params\"][\"domain\"]}}: {{$node[\"Get Email\"].json[\"message\"][\"email\"]}} ({{$node[\"Get Email\"].json[\"message\"][\"confidence\"]}} - {{$node[\"Get Email\"].json[\"message\"][\"score\"]}})",
"chatId": "123456789",
"additionalFields": {}
},
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "Get Email",
"type": "n8n-nodes-base.uproc",
"position": [
750,
470
],
"parameters": {
"mode": "verify",
"tool": "getEmailRecipient",
"domain": "={{$node[\"Set Tool Parameters\"].json[\"domain\"]}}",
"lastname": "={{$node[\"Set Tool Parameters\"].json[\"lastname\"]}}",
"firstname": "={{$node[\"Set Tool Parameters\"].json[\"firstname\"]}}",
"additionalOptions": {}
},
"credentials": {
"uprocApi": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "Set Tool Parameters",
"type": "n8n-nodes-base.set",
"position": [
570,
470
],
"parameters": {
"values": {
"string": [
{
"name": "firstname",
"value": "Miquel"
},
{
"name": "lastname",
"value": "Colomer"
},
{
"name": "domain",
"value": "uproc.io"
}
]
},
"options": {},
"keepOnlySet": true
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"Get Email": {
"main": [
[
{
"node": "Telegram",
"type": "main",
"index": 0
}
]
]
},
"Set Tool Parameters": {
"main": [
[
{
"node": "Get Email",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[
{
"node": "Set Tool Parameters",
"type": "main",
"index": 0
}
]
]
}
}
}
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.
telegramApiuprocApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
This n8n workflow template uses uProc's "Get Email by Domain, Firstname and Lastname" tool to discover a professional email address, and then sends that email to a Telegram channel.
Source: https://n8n.io/workflows/903/ — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Create A Website Screenshot And Send Via Telegram Channel. Uses manualTrigger, telegram, uproc. Event-driven trigger; 3 nodes.
Create a screenshot of a website and send it to a telegram channel. Uses manualTrigger, telegram, uproc. Event-driven trigger; 3 nodes.
Get SSL Certificate. Uses manualTrigger, functionItem, uproc, telegram. Event-driven trigger; 5 nodes.
Do you want to check the SSL certificate expiration dates of your customers or servers?
Telegramtrigger Workflow. Uses telegramTrigger, noOp, telegram, stickyNote. Event-driven trigger; 13 nodes.