Welcome a New Subscriber with a Series
Send a series of emails to a new subscriber over the first week after sign-up. Step 1 immediately, step 2 after 24 hours, step 3 after 72 hours. Different content per step.
Who this is for
Marketers running newsletter, product, or SaaS onboarding sequences.
The Mailtarget surface
| Component | Used for |
|---|---|
Email Automation (/v1/automations) | The series logic |
| Mailtarget CDP | Subscriber data, label triggers |
| Email Marketing | Per-step campaigns or templates |
| Forms | Capture sign-up at the source |
Execution
Step 1: Capture the sign-up
Either through a Mailtarget form on your site (sign-up creates a contact), or via API call from your application on user registration. Either way, the contact lands in the Contact Book with a label like newsletter or product_signup.
curl https://api.mailtarget.co/v1/contacts \
-X POST \
-H "Authorization: Bearer $MAILTARGET_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"firstName": "Alice",
"labels": ["newsletter"],
"fields": { "signup_source": "homepage_form" }
}'
Step 2: Build the automation
In the dashboard:
- Open Email Automation, create a flow.
- Trigger: contact gains label
newsletter. - Add Step 1: Send Email with welcome content. No delay.
- Add Delay: 24 hours.
- Add Step 2: Send Email with onboarding tips.
- Add Delay: 48 hours (so step 3 fires at the 72-hour mark).
- Add Step 3: Send Email with a soft CTA (book a call, browse products, read top blog post).
- Add Action: Finish.
Each step references a campaign or template. Pre-build the templates so the flow references them by ID.
Step 3: Verify the trigger
Add yourself with a test label, watch the flow fire across 72 hours. Or use the dashboard test mode to simulate immediately.
Common mistakes
| Symptom | Cause | Fix |
|---|---|---|
| Series fires multiple times for one contact | Trigger condition too broad (matches each label change) | Scope trigger to "label first added", not "label present" |
| Step 2 never fires | Contact unsubscribed between steps. Series stops by design | Confirm via webhook events; do not auto-resubscribe |
| Open rate drops sharply step 1 to step 2 | Step 2 subject or sender shift | Keep from and tone consistent across the series |
| Series content stale | Templates referenced by ID, ID points at retired template | Audit template references quarterly |
Outcome to track
- Step 1 open rate above 50 percent (welcome moment is highest engagement).
- Series completion rate (contacts who receive all 3) above 80 percent.
- Unsubscribe rate during series below 2 percent. Higher means content mismatch.
- Conversion to active engagement (open or click on a non-welcome campaign within 14 days) above 30 percent.
Related
- Mailtarget CDP for the contact data model.
- Segmentation for trigger conditions.
- Email Marketing for the campaign model that each step references.