Skip to main content
How you reach users — push, email, SMS, and more — and how channel preferences work in Zixflow. Available today: Mobile push notifications (iOS / Android). Other channels are planned; opt-out fields already exist on profiles so you can store consent early.

What Are Communication Channels?

A channel is a pathway for outbound messages: Different channels trade off reach, speed, visibility, cost, and content richness. Use the channel that matches urgency and message complexity.

Channel Opt-Out Model

Every profile stores opt-out status per channel: Each channel also has an _opt_out_at timestamp.
User Suppression blocks all channels at once (server-side lifecycle events User Suppressed / User Unsuppressed). See User Preferences & Consent.

Push Notifications (Available)

Platform: iOS, Android
Delivery: APNs / FCM
Latency: Typically under 5 seconds
Opt-in: System permission dialog
Opt-out field: push_opt_out (default NOT_OPTED_OUT)
Supported today:
  • Device token registration and multi-device profiles
  • Platform routing (iOS → APNs, Android → FCM)
  • Profile push_opt_out / push_opt_out_at
  • Deep linking
  • Delivery / open / action tracking — Push Notification Tracking
When to use: Order updates, payment failures, cart reminders, real-time alerts. Setup guides: Devices & Push and the SDK push docs.

Coming Soon

These channels are not live for delivery yet. Opt-out fields are already on the profile so you can capture consent ahead of launch:

Choosing a Channel (Pattern)

Ask:
  1. How urgent? Critical → Push or SMS · Important but not urgent → Email · Contextual → In-app
  2. How much detail? Quick alert → Push/SMS · Long explanation → Email · Interactive → In-app
  3. Where is the user? In app → In-app · Away → Push/Email

Example: Cart recovery (orchestration pattern)

This is a common multi-channel pattern. Today you can implement the push steps; email/SMS steps apply when those channels ship.

Push Best Practices

Do: Request permission after showing value; personalize; clear CTA + deep link; respect quiet hours. Don’t: Ask on first launch; send generic spam; ignore opt-outs or quiet hours.
Next: User Preferences & Consent