This workflow follows the Emailsend → HTTP Request recipe pattern — see all workflows that pair these two integrations.
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 →
{
"nodes": [
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"position": [
-100,
470
],
"parameters": {},
"typeVersion": 1
},
{
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"notes": "Get news page",
"position": [
100,
470
],
"parameters": {
"url": "=https://news.ycombinator.com/",
"options": {
"fullResponse": true,
"batchInterval": 500
},
"responseFormat": "file",
"queryParametersUi": {
"parameter": []
},
"headerParametersUi": {
"parameter": []
},
"allowUnauthorizedCerts": true
},
"notesInFlow": true,
"typeVersion": 1
},
{
"name": "HTML Extract",
"type": "n8n-nodes-base.htmlExtract",
"notes": "extract news data",
"position": [
310,
470
],
"parameters": {
"options": {},
"sourceData": "binary",
"extractionValues": {
"values": [
{
"key": "news_title",
"cssSelector": ".storylink",
"returnArray": true
},
{
"key": "news_url",
"attribute": "href",
"cssSelector": ".storylink",
"returnArray": true,
"returnValue": "attribute"
}
]
}
},
"notesInFlow": true,
"typeVersion": 1
},
{
"name": "list news url",
"type": "n8n-nodes-base.itemLists",
"position": [
500,
570
],
"parameters": {
"options": {},
"fieldToSplitOut": "news_url"
},
"typeVersion": 1
},
{
"name": "list news title",
"type": "n8n-nodes-base.itemLists",
"position": [
500,
390
],
"parameters": {
"options": {},
"fieldToSplitOut": "news_title"
},
"typeVersion": 1
},
{
"name": "Merge",
"type": "n8n-nodes-base.merge",
"position": [
700,
470
],
"parameters": {
"mode": "mergeByIndex"
},
"typeVersion": 1
},
{
"name": "Spreadsheet File",
"type": "n8n-nodes-base.spreadsheetFile",
"position": [
870,
470
],
"parameters": {
"options": {
"fileName": "=Ycombinator_news_{{new Date().toISOString().split('T', 1)[0]}}.{{$parameter[\"fileFormat\"]}}",
"sheetName": "Latest news"
},
"operation": "toFile"
},
"typeVersion": 1
},
{
"name": "Send email notification",
"type": "n8n-nodes-base.emailSend",
"position": [
1050,
470
],
"parameters": {
"text": "=Here are the latest news attached!",
"options": {},
"subject": "Ycombinator news",
"toEmail": "",
"fromEmail": "",
"attachments": "data"
},
"credentials": {
"smtp": "<your credential>"
},
"typeVersion": 1
}
],
"connections": {
"Merge": {
"main": [
[
{
"node": "Spreadsheet File",
"type": "main",
"index": 0
}
]
]
},
"HTML Extract": {
"main": [
[
{
"node": "list news title",
"type": "main",
"index": 0
},
{
"node": "list news url",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"main": [
[
{
"node": "HTML Extract",
"type": "main",
"index": 0
}
]
]
},
"list news url": {
"main": [
[
{
"node": "Merge",
"type": "main",
"index": 1
}
]
]
},
"list news title": {
"main": [
[
{
"node": "Merge",
"type": "main",
"index": 0
}
]
]
},
"Spreadsheet File": {
"main": [
[
{
"node": "Send email notification",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[
{
"node": "HTTP Request",
"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.
smtp
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Manual Http. Uses manualTrigger, httpRequest, htmlExtract, itemLists. Event-driven trigger; 8 nodes.
Source: https://github.com/Zie619/n8n-workflows — 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.
Property Lead Contact Enrichment from CRM. Uses manualTrigger, scheduleTrigger, httpRequest, spreadsheetFile. Event-driven trigger; 16 nodes.
Manual Http. Uses manualTrigger, salesforce, itemLists, renameKeys. Event-driven trigger; 14 nodes.
Workflow 1794. Uses salesforce, itemLists, httpRequest, spreadsheetFile. Event-driven trigger; 14 nodes.
This workflow shows a no code approach to creating Salesforce accounts and contacts based on data coming from an Excel file. For Excel 365 (the online version of Microsoft Excel) check out this workfl
TrackCollect_deeper. Uses googleSheets, httpRequest, @n-octo-n/n8n-nodes-json-database, itemLists. Event-driven trigger; 80 nodes.