Bulk Email Campaign with foreach

v1.1 Feature

Demonstrates v1.1 foreach iteration — send personalized emails to a user list.

3 nodes · 1 edges
v1.1foreachloopmarketing
Visual
Fetch Subscribersdb
loopPersonalize
Personalizeagent
Send Emailapi
ex-foreach-bulk-email.osop.yaml
osop_version: "1.1"
id: "foreach-bulk-email"
name: "Bulk Email Campaign with foreach"
nodes:
  - id: "fetch"
    type: "db"
    name: "Fetch Subscribers"
  - id: "personalize"
    type: "agent"
    name: "Personalize"
  - id: "send"
    type: "api"
    name: "Send Email"
edges:
  - from: "fetch"
    to: "personalize"
    mode: "loop"
    for_each: "outputs.fetch.rows"
    iterator_var: "subscriber"