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": {
"interval": 86400
},
"name": "Schedule Trigger (Daily)",
"type": "n8n-nodes-base.interval",
"typeVersion": 1,
"position": [
0,
300
]
},
{
"parameters": {
"url": "https://api.openweathermap.org/data/2.5/weather?q=London&appid=YOUR_API_KEY",
"options": {}
},
"name": "HTTP Request (Weather API)",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"fromEmail": "your_email@example.com",
"toEmail": "recipient@example.com",
"subject": "Daily Weather Forecast for {{ $json.name }}",
"text": "Today's weather: {{ $json.weather[0].description }}. Temperature: {{ $json.main.temp }}\u00b0C.",
"options": {}
},
"name": "Send Email",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 1,
"position": [
500,
300
]
}
],
"connections": {
"Schedule Trigger (Daily)": {
"output": [
[
{
"node": "HTTP Request (Weather API)",
"index": 0
}
]
]
},
"HTTP Request (Weather API)": {
"output": [
[
{
"node": "Send Email",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Weather Forecast To Email Sms. Uses httpRequest, emailSend. Manual trigger; 3 nodes.
Source: https://github.com/EdgeAgent/n8n-automations/blob/main/weather_forecast_to_email_sms/weather_forecast_to_email_sms.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.
Ecommerce Order Processing. Uses httpRequest, emailSend. Manual trigger; 4 nodes.
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.