AutomationFlowsWeb Scraping › Weather Forecast to Email SMS

Weather Forecast to Email SMS

Weather Forecast To Email Sms. Uses httpRequest, emailSend. Manual trigger; 3 nodes.

Manual trigger★☆☆☆☆ complexity3 nodesHTTP RequestEmail Send
Web Scraping Trigger: Manual Nodes: 3 Complexity: ★☆☆☆☆ Added:

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 →

Download .json
{
  "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
          }
        ]
      ]
    }
  }
}
Pro

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 →

More Web Scraping workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Web Scraping

PDF Accessibility Complete Automation. Uses httpRequest, n8n-nodes-pdf-accessibility, googleDrive, emailSend. Manual trigger; 6 nodes.

HTTP Request, N8N Nodes Pdf Accessibility, Google Drive +1
Web Scraping

Customer Support Ticket Automation. Uses emailReceive, httpRequest, emailSend. Manual trigger; 5 nodes.

Email Receive, HTTP Request, Email Send
Web Scraping

Ecommerce Order Processing. Uses httpRequest, emailSend. Manual trigger; 4 nodes.

HTTP Request, Email Send
Web Scraping

User Onboarding Workflow. Uses httpRequest, emailSend. Webhook trigger; 7 nodes.

HTTP Request, Email Send
Web Scraping

Golden Sample: webhook → http → transform → respond (+error path). Uses httpRequest, errorTrigger, emailSend. Webhook trigger; 7 nodes.

HTTP Request, Error Trigger, Email Send