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 →
{
"name": "Daily Kleinanzeigen local-job alerts with Apify",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "days",
"triggerAtHour": 8
}
]
}
},
"id": "local-jobs-schedule",
"name": "Daily schedule",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
-620,
0
]
},
{
"parameters": {
"method": "POST",
"url": "https://api.apify.com/v2/actors/benthepythondev~kleinanzeigen-jobs-scraper/run-sync-get-dataset-items",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendBody": true,
"contentType": "raw",
"rawContentType": "application/json",
"body": "{\"keyword\":\"pflegekraft\",\"locationCode\":\"berlin\",\"fetchDetails\":true,\"maxResults\":25}",
"options": {
"timeout": 300000
}
},
"id": "local-jobs-apify",
"name": "Run Local Jobs Actor",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
-360,
0
]
},
{
"parameters": {
"jsCode": "const input = $input.all().map(item => item.json);\nconst rows = input.length === 1 && Array.isArray(input[0]) ? input[0] : input;\nconst jobs = rows.filter(row => row && row.url);\nconst lines = jobs.slice(0, 25).map((row, index) => {\n const salary = row.salary_eur ? `${row.salary_eur} EUR/${row.salary_period || 'period'}` : 'Salary unavailable';\n return `${index + 1}. ${row.title || row.job_category || 'Local job'}\\n${row.employment_type || 'Type unavailable'} | ${salary} | ${row.location || row.city || 'Location unavailable'}\\n${row.url}`;\n});\nreturn [{ json: { subject: `Kleinanzeigen local jobs: ${jobs.length} matches`, digest: lines.join('\\n\\n') || 'No local jobs matched the configured filters today.' } }];"
},
"id": "local-jobs-digest",
"name": "Build local-job digest",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
-100,
0
]
},
{
"parameters": {
"fromEmail": "alerts@example.com",
"toEmail": "you@example.com",
"subject": "={{ $json.subject }}",
"emailFormat": "text",
"text": "={{ $json.digest }}",
"options": {}
},
"id": "local-jobs-email",
"name": "Email local-job alert",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 2.1,
"position": [
160,
0
]
}
],
"connections": {
"Daily schedule": {
"main": [
[
{
"node": "Run Local Jobs Actor",
"type": "main",
"index": 0
}
]
]
},
"Run Local Jobs Actor": {
"main": [
[
{
"node": "Build local-job digest",
"type": "main",
"index": 0
}
]
]
},
"Build local-job digest": {
"main": [
[
{
"node": "Email local-job alert",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "kleinanzeigen-local-jobs-alerts-v1",
"meta": {
"templateCredsSetupCompleted": false
},
"tags": []
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Daily Kleinanzeigen local-job alerts with Apify. Uses httpRequest, emailSend. Scheduled trigger; 4 nodes.
Source: https://gist.github.com/benthepythondev00/e28968a940fe4195ffb5a997fe309503 — 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.
Women creators, homemakers-turned-entrepreneurs, and feminine lifestyle brands who want a graceful, low-lift way to keep an eye on competitor content and spark weekly ideas.
Weekday ATS hiring signals with Apify. Uses httpRequest, emailSend. Scheduled trigger; 4 nodes.
Daily remote job alerts with Apify. Uses httpRequest, emailSend. Scheduled trigger; 4 nodes.
Google Maps contact enrichment with Apify. Uses httpRequest, emailSend. Scheduled trigger; 4 nodes.
Daily Kleinanzeigen property alerts with Apify. Uses httpRequest, emailSend. Scheduled trigger; 4 nodes.