FindPrompts
Sign InGet Started

Get the best new prompts every week

Join the FindPrompts newsletter — top prompts, fresh mastery guides, and AI workflow tips. Free, no spam.

FindPrompts

The largest AI prompts database. 30,000+ prompts for ChatGPT, Claude, Midjourney, and more.

Categories

  • Marketing
  • Business
  • Writing
  • Coding
  • Education

Platforms

  • ChatGPT
  • Claude
  • Gemini
  • Grok
  • Midjourney

Resources

  • Best AI Prompts
  • Free Tools
  • Prompt Grader
  • Prompt Templatizer
  • AI Token Counter
  • Image Prompt Generator
  • System Prompt Generator
  • Prompt A/B Tester
  • Prompt-to-JSON
  • Headline Generator
  • AI Cost Calculator
  • AI Prompt Improver
  • Prompt Generators
  • Mastery Guides
  • Cheatsheets
  • Automations
  • AI Tools
  • Custom GPTs
  • Blog
  • Affiliate Program

Company

  • Pricing
  • Contact
  • Terms of Service
  • Privacy Policy

© 2026 FindPrompts. All rights reserved.

TwitterGitHub
FindPrompts
FindPrompts

Main

Dashboard
Prompt Library30k+
DiscoverHot
LeaderboardNew
BundlesNew
Prompt Maker
PlaygroundBeta
GeneratorsNew
WorkflowsPro

Personal

Compare
Prompt Improver
Prompt Grader
Templatizer
Token Counter
Image Prompts
System Prompts
A/B Tester
All Free Tools
My Vault
Analytics
Submit Prompt
AI Tools
Guides
Cheatsheets
Automations
Settings
Go Pro

Unlock workflows, API access, and premium features.

Upgrade Now

User

Command Palette

Search for a command to run...

HomeAutomationsNew Subscriber Welcome Series
n8nContent & MarketingBeginner5 steps

New Subscriber Welcome Series

When a new subscriber is added to your newsletter, this workflow tags them, sends an instant welcome, waits two days, and sends a value-packed follow-up. A lightweight drip campaign without an ESP automation upgrade.

WebhookGmailGoogle Sheets

How it works

  1. 1Trigger: webhook fires when a new subscriber signs up
  2. 2Send an immediate welcome email
  3. 3Wait two days
  4. 4Send a follow-up with a best-of resource
  5. 5Tag the subscriber as onboarded

Setup

  • Point your signup form at the webhook URL.
  • Connect Gmail and Google Sheets credentials.
  • Edit the email copy and the resource link.
  • Wait nodes require persistent executions in n8n.

Workflow JSON

{
  "name": "New Subscriber Welcome Series",
  "nodes": [
    {
      "id": "ws01aa",
      "name": "New Subscriber",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        180,
        300
      ],
      "parameters": {
        "httpMethod": "POST",
        "path": "new-subscriber",
        "responseMode": "onReceived"
      }
    },
    {
      "id": "ws02bb",
      "name": "Welcome Email",
      "type": "n8n-nodes-base.gmail",
      "typeVersion": 2.1,
      "position": [
        380,
        300
      ],
      "parameters": {
        "resource": "message",
        "operation": "send",
        "sendTo": "={{ $json.body.email }}",
        "subject": "Welcome! Here is what to expect",
        "message": "Thanks for subscribing! Every week you'll get one actionable tip.",
        "options": {}
      }
    },
    {
      "id": "ws03cc",
      "name": "Wait 2 Days",
      "type": "n8n-nodes-base.wait",
      "typeVersion": 1.1,
      "position": [
        580,
        300
      ],
      "parameters": {
        "amount": 2,
        "unit": "days"
      }
    },
    {
      "id": "ws04dd",
      "name": "Follow-up Email",
      "type": "n8n-nodes-base.gmail",
      "typeVersion": 2.1,
      "position": [
        780,
        300
      ],
      "parameters": {
        "resource": "message",
        "operation": "send",
        "sendTo": "={{ $('New Subscriber').item.json.body.email }}",
        "subject": "Our most popular resource",
        "message": "Here is the guide our readers love most: https://example.com/guide",
        "options": {}
      }
    },
    {
      "id": "ws05ee",
      "name": "Tag Onboarded",
      "type": "n8n-nodes-base.googleSheets",
      "typeVersion": 4.4,
      "position": [
        980,
        300
      ],
      "parameters": {
        "operation": "appendOrUpdate",
        "documentId": "YOUR_SHEET_ID",
        "sheetName": "Subscribers",
        "columns": {
          "mappingMode": "defineBelow",
          "value": {
            "email": "={{ $('New Subscriber').item.json.body.email }}",
            "status": "onboarded"
          }
        }
      }
    }
  ],
  "connections": {
    "New Subscriber": {
      "main": [
        [
          {
            "node": "Welcome Email",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Welcome Email": {
      "main": [
        [
          {
            "node": "Wait 2 Days",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Wait 2 Days": {
      "main": [
        [
          {
            "node": "Follow-up Email",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Follow-up Email": {
      "main": [
        [
          {
            "node": "Tag Onboarded",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": false,
  "settings": {},
  "meta": {}
}

Related Automations

RSS to GPT Summary Slack Digest

Turn noisy RSS feeds into a clean daily AI-summarized Slack digest.

AI Blog Post Pipeline

From a keyword in a sheet to a drafted, SEO-structured blog post.