July 2, 2026 · Playbooks · 8 min read
Reactivating cold users is more cost-effective than acquiring new customers. When a customer stops logging in, growth teams trigger automated winback campaigns to encourage usage. The reactivation strategy requires identifying inactive segments, determining why users lapsed, and sending targeted notifications. This playbook outlines how to build automated sequences to reactivate cold accounts.
To identify cold users, database cron jobs scan activity logs. The following SQL query segments inactive cohorts:
SELECT user_id, email, last_login_date
FROM user_activity_logs
WHERE last_login_date <= NOW() - INTERVAL '14 days'
AND status = 'active'
AND plan_tier = 'premium'
ORDER BY last_login_date DESC
LIMIT 100;
This query isolates premium users who have lapsed, preparing them for winback notifications.
Reactivation campaigns use a 14 days inactivity duration threshold for winback sequences. Triggering sequences too early annoys users, while waiting too long reduces recovery odds. Implementing multi-channel push sequences (combining push notifications and SMS) yields 30% higher engagement, helping platforms achieve a 15% average reactivation success rate.
Reactivation webhooks send user data to messaging platforms like MoEngage. Growth teams configure webhook payloads to dispatch custom winback templates:
{
"campaign_name": "winback_premium_cohort",
"targeting_filter": {
"days_inactive_min": 14,
"user_segment": "premium"
},
"message_templates": {
"push": "We miss you, Aravind! Claim 20% off your next renewal.",
"email": "temp-winback-20"
}
}
This payload structure triggers target notifications, recovering inactive cohorts.
Reactivation sequences must comply with the DPDP Act and local DLT messaging guidelines in India. Startups must provide clear opt-out options in every message, updating customer profiles instantly. Saving user consent records in secure, partitioned cloud storage protects the platform, verifying that marketing engines follow data privacy regulations.
Reactivating inactive accounts requires running segmented re-engagement drips. The retention engine queries databases daily to locate accounts that haven't logged in for 30 days. The system segments these users by historical activity patterns.
The drip engine compiles customized re-engagement emails, using dynamic subject variables to prompt checkins. Monitoring click conversions helps teams trace which incentives reactivate cold cohorts, optimizing lifetime value.
Re-engagement tasks must run under query parameters that prevent double messages. Growth teams build connection parameters that route users to custom workflows, filtering clicks by campaign ID and logging user response paths. Running checks monthly secures clean email schedules, maximizing active retention.
One actionable growth breakdown every morning, across 12 industries — with an audio version in 21 languages. No fluff, just hard product teardowns and India benchmarks.