Drip campaign — pace the sends

Two touches of a drip campaign, two seconds apart: Wait holds the flow between sends, so the recipient never gets both at once. Swap the consoles for real email sends.

What’s inside

4 nodes — every type links to its full reference page.

StepNodeType
Enrolled contact Inject input.inject
Send touch 1 Console utility.console
Wait 2s Wait logic.wait
Send touch 2 Console utility.console

Import it

  1. Studio → Import — paste the JSON below (or the URL /docs/templates/drip-campaign-pace-the-sends.json).
  2. Or ask the AI Copilot with the JSON pasted after the phrase:
    import this workflow json into a new workflow named "Drip campaign — pace the sends"
  3. Any credentials the nodes need are ${credential.…} references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 3 node types)
{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Drip campaign — pace the sends",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "Enrolled contact",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": {
          "to": "ada@example.test"
        }
      },
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "touch1",
      "type": "utility.console",
      "label": "Send touch 1",
      "category": "utility",
      "config": {
        "message": "📧 touch 1 → {{ $json.to }}"
      },
      "position": {
        "x": 530,
        "y": 0
      }
    },
    {
      "id": "hold",
      "type": "logic.wait",
      "label": "Wait 2s",
      "category": "flow",
      "config": {
        "mode": "duration",
        "amount": 2,
        "unit": "seconds"
      },
      "position": {
        "x": 1060,
        "y": 0
      }
    },
    {
      "id": "touch2",
      "type": "utility.console",
      "label": "Send touch 2",
      "category": "utility",
      "config": {
        "message": "📧 touch 2 → {{ $json.to }}"
      },
      "position": {
        "x": 1590,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "touch1",
      "targetPort": "input"
    },
    {
      "id": "e1",
      "sourceNodeId": "touch1",
      "sourcePort": "output",
      "targetNodeId": "hold",
      "targetPort": "input"
    },
    {
      "id": "e2",
      "sourceNodeId": "hold",
      "sourcePort": "output",
      "targetNodeId": "touch2",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "Two touches of a drip campaign, two seconds apart: Wait holds the flow between sends, so the recipient never gets both at once. Swap the consoles for real email sends."
  }
}

Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: drip-campaign-pace-the-sends.json.