Before you start: make sure you’ve set up user authentication and configured your email service.
The Flow at a Glance
Day 0
Immediate welcome + 1 CTA
Day 2
Tips for getting value
Day 6
Nudge + resources
Step 1: Create the Workflow
Add a Database trigger
Click Add Trigger > Database. Listen for new rows in
auth.users or your profiles table — whichever represents a finished signup in your app.Step 2: Email 1 — Immediate Welcome
Configure the email
- To:
{{trigger.email}} - Subject:
Welcome to Acme, {{trigger.name}}! - Body: Short. Introduce your product in 2-3 sentences. One clear CTA (e.g., “Complete your profile” or “Import your first contact”). No links to the pricing page, no feature walls of text.
Step 3: Email 2 — Day 2 Tip
Step 4: Email 3 — Day 6 Nudge
Step 5: Save and Enable
Click Save, then toggle Enabled in the top right. Workflows only fire when enabled.Personalization Tokens
Use{{trigger.fieldName}} to pull any column from the signup row:
|| operator to provide fallbacks when a field is empty.
Conditional Branching
Smart sequences skip or swap emails based on user behavior. For example: if a user has completed their profile by day 2, send a “Congrats on your first steps” email instead of the generic tip.Tracking Effectiveness
Once the sequence is running, measure what’s actually working.- Open rate — subject line performance
- Click rate — body content performance
- Reply rate — genuine engagement signal
Verify It Worked
Sign up with a test email address. Confirm:- Email 1 arrives within 1-2 minutes
- Email 2 arrives on day 2
- Email 3 arrives on day 6
- All three render correctly on desktop and mobile
- The unsubscribe link works
- Personalization tokens render (no literal
{{trigger.name}}in the final email)
Troubleshooting
Emails aren't sending
Emails aren't sending
Check that your email service is configured and the sender domain is verified. Go to Settings > Email and confirm the green checkmark. Unverified sender domains will cause silent failures — the workflow runs but nothing reaches inboxes.
Timing is off (emails arrive wrong day)
Timing is off (emails arrive wrong day)
Delay actions use the workflow runner schedule. If runs are backed up, delays can stretch. Check Workflows > Runs for stuck executions. For precise timing, use scheduled triggers instead of delays on very long sequences.
Opens aren't being tracked
Opens aren't being tracked
Ensure open tracking is enabled in your email provider settings. Some email clients (especially Apple Mail with privacy protection) suppress tracking pixels — expect open rates to understate real engagement.
Unsubscribes aren't being handled
Unsubscribes aren't being handled
If people unsubscribe and still get follow-up emails, the workflow isn’t checking the suppression list before sending. Add a Check Suppressions step before each Send Email action, or use the provider’s built-in suppression handling. See Email Suppressions.
Personalization tokens rendering as literal text
Personalization tokens rendering as literal text
The trigger payload doesn’t contain that field. Open the workflow’s Runs tab, click a run, and inspect the trigger data. If
name is missing, either update your signup form to capture it, or add a fallback with {{trigger.name || 'there'}}.What’s Next?
Workflows Basics
How triggers, actions, and runs fit together
Email Suppressions
Handle unsubscribes and bounces properly