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 →
{
"active": true,
"connections": {
"HTTP Request": {
"main": [
[
{
"index": 0,
"node": "Send Email",
"type": "main"
}
]
]
},
"Webhook": {
"main": [
[
{
"index": 0,
"node": "HTTP Request",
"type": "main"
}
]
]
}
},
"id": "basic-http-email",
"name": "Basic HTTP to Email",
"nodes": [
{
"id": "webhook",
"name": "Webhook",
"parameters": {
"path": "webhook-test"
},
"position": [
100,
200
],
"type": "n8n-nodes-base.webhook",
"typeVersion": 1
},
{
"id": "http",
"name": "HTTP Request",
"parameters": {
"method": "GET",
"url": "{{ $json.url }}"
},
"position": [
300,
200
],
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1
},
{
"id": "email",
"name": "Send Email",
"parameters": {
"subject": "HTTP Request Result",
"text": "{{ $json }}",
"to": "admin@example.com"
},
"position": [
500,
200
],
"type": "n8n-nodes-base.emailSend",
"typeVersion": 1
}
]
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Basic HTTP to Email. Uses httpRequest, emailSend. Webhook trigger; 3 nodes.
Source: https://github.com/neul-labs/m9m/blob/main/internal/compatibility/test_data/workflows/basic_http_to_email.json — 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.
User Onboarding Workflow. Uses httpRequest, emailSend. Webhook trigger; 7 nodes.
Golden Sample: webhook → http → transform → respond (+error path). Uses httpRequest, errorTrigger, emailSend. Webhook trigger; 7 nodes.
세미나 데모 용 워크플로우. Uses httpRequest, emailSend. Webhook trigger; 17 nodes.
worklow_doc. Uses httpRequest, readBinaryFile, n8n-nodes-docxtemplater, emailSend. Webhook trigger; 15 nodes.
WF2 - Upload Manual | JurisAI. Uses httpRequest, emailSend. Webhook trigger; 15 nodes.