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": [
{
"parameters": {
"url": "https://your-ecommerce-platform.com/api/orders/new",
"method": "GET",
"options": {
"headers": [
{
"name": "Authorization",
"value": "Bearer YOUR_ECOMMERCE_API_KEY"
}
]
}
},
"name": "New Order Trigger",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"values": [
{
"name": "orderId",
"value": "{{ $json.id }}"
},
{
"name": "customerEmail",
"value": "{{ $json.customer.email }}"
},
{
"name": "items",
"value": "{{ $json.line_items }}"
}
]
},
"name": "Extract Order Data",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [
480,
300
]
},
{
"parameters": {
"url": "https://your-ecommerce-platform.com/api/inventory/update",
"method": "POST",
"body": "{\"order_id\": \"{{ $json.orderId }}\", \"items\": \"{{ $json.items }}\"}",
"jsonBody": true,
"options": {
"headers": [
{
"name": "Authorization",
"value": "Bearer YOUR_ECOMMERCE_API_KEY"
},
{
"name": "Content-Type",
"value": "application/json"
}
]
}
},
"name": "Update Inventory",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
720,
200
]
},
{
"parameters": {
"to": "{{ $json.customerEmail }}",
"subject": "Your Order #{{ $json.orderId }} Has Shipped!",
"text": "Hi there,\n\nGood news! Your order #{{ $json.orderId }} has shipped and is on its way.\n\nThank you for your purchase!\n\nBest regards,\nYour Store Team",
"options": {}
},
"name": "Send Shipping Notification",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 1,
"position": [
720,
400
]
}
],
"connections": {
"New Order Trigger": [
[
{
"node": "Extract Order Data",
"index": 0
}
]
],
"Extract Order Data": [
[
{
"node": "Update Inventory",
"index": 0
}
],
[
{
"node": "Send Shipping Notification",
"index": 0
}
]
]
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Ecommerce Order Processing. Uses httpRequest, emailSend. Manual trigger; 4 nodes.
Source: https://github.com/EdgeAgent/n8n-automations/blob/main/ecommerce_order_processing/ecommerce_order_processing.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.
PDF Accessibility Complete Automation. Uses httpRequest, n8n-nodes-pdf-accessibility, googleDrive, emailSend. Manual trigger; 6 nodes.
Customer Support Ticket Automation. Uses emailReceive, httpRequest, emailSend. Manual trigger; 5 nodes.
Weather Forecast To Email Sms. Uses httpRequest, emailSend. Manual trigger; 3 nodes.
PDF to Markdown Converter (LlamaCloud) Description: How it works This workflow extracts structured content from complex PDFs using LlamaCloud's advanced parsing engine:
> ⚠️ Notice: > Community nodes like @custom-js/n8n-nodes-pdf-toolkit-v2 can be installed on both self-hosted and Cloud instances of n8n. Just search for it via CustomJS.