Basic email list segmentation — sending to "active subscribers" vs "all subscribers" — was sufficient for deliverability management when Gmail's reputation model was simpler. In 2026, Gmail's per-user personalised filtering (amplified by Gemini AI) and Microsoft's increasingly sophisticated EOP filtering mean that the same list segment performs differently for different sub-segments within it. A "90-day active" segment that includes both highly engaged weekly openers and once-in-90-days passive openers generates very different reputation signals per message sent — and the passive sub-segment's lower engagement and higher complaint probability drags down the reputation signals generated by the highly engaged sub-segment. Advanced segmentation separates these sub-segments so each can be served with the sending strategy that matches its engagement quality.

Engagement score
A composite metric combining recency, frequency, and action type — more predictive than days-since-last-open
RFM
Recency-Frequency-Monetary — the e-commerce segmentation framework that applies directly to email deliverability
Acquisition source
The single strongest predictor of a contact's long-term complaint and bounce rate
Per-ISP
Segmenting by recipient ISP enables ISP-specific sending optimisation not possible with unified lists

Why Basic Segmentation Is No Longer Enough

The traditional segmentation model — active (opened in past 90 days) vs lapsed (no open in 90 days) — made sense when ISP spam filters applied uniform rules to all messages from a sender's domain. Gmail's 2026 personalised filtering means the same message from the same domain generates different outcomes for different recipients based on their individual engagement history with the sender. A contact who opens every email is effectively in a "trusted sender" relationship with the sending domain at the individual level — Gmail is less likely to route that sender's messages to spam for that specific contact. A contact who has not opened in 89 days but was included in the "active" segment because they fall within the 90-day window has much weaker individual engagement signals — and Gmail's per-user model applies correspondingly stronger spam filter evaluation to messages from the same sender for that specific contact.

The practical implication: the "90-day active" segment contains contacts ranging from "opens every message immediately" to "opened once in the past 89 days and has been unresponsive since." Treating them identically in the sending strategy means the least-engaged portion of the "active" segment generates complaint and disengagement signals that reduce the reputation benefits generated by the most-engaged portion of the same segment.

Engagement Scoring: Building the Model

Engagement scoring assigns a numerical score to each contact based on their interaction history with the programme's email. The score provides a continuous ranking from maximally engaged to completely disengaged — enabling segmentation at any granularity rather than at the binary threshold level of "active vs lapsed."

A practical engagement scoring model for deliverability purposes:

# Engagement score formula (0-100 scale)
# Each component weighted by deliverability relevance

score = 0

# Recency of last open (most weighted — recent engagement is strongest signal)
if days_since_last_open <= 7:   score += 30
elif days_since_last_open <= 30:  score += 22
elif days_since_last_open <= 60:  score += 14
elif days_since_last_open <= 90:  score += 7
else:                              score += 0

# Recency of last click (click = stronger signal than passive open)
if days_since_last_click <= 14:   score += 25
elif days_since_last_click <= 30:  score += 18
elif days_since_last_click <= 60:  score += 10
elif days_since_last_click <= 90:  score += 4
else:                               score += 0

# Frequency of engagement (opens in last 90 days)
opens_90d = count_opens_last_90_days()
score += min(opens_90d * 2, 20)    # Max 20 points from frequency, capped at 10 opens

# Action signals (higher-value engagement signals)
if has_replied_in_last_6_months:   score += 15
if has_converted_in_last_6_months: score += 10

# Total max: 100 points

This scoring model produces a 0-100 engagement score for each contact that reflects the deliverability signal quality of their engagement history. Contacts scoring 70-100 are high-quality reputation signal generators; contacts scoring 30-50 are moderate quality; contacts scoring below 30 generate minimal positive signals and elevated complaint risk.

RFM Segmentation Applied to Email Deliverability

RFM (Recency-Frequency-Monetary) is a classic e-commerce segmentation framework. Applied to email deliverability, the three dimensions map as: Recency = days since last open or click; Frequency = number of opens/clicks per month; Monetary = for e-commerce, purchase value from email-attributed sessions; for non-commercial programmes, an engagement proxy like reply count or survey response count.

The RFM segments and their deliverability implications for a newsletter programme:

RFM segmentR (recency)F (frequency)Email strategyComplaint risk
ChampionsRecent (<14d)High (monthly)Full frequency, test new contentVery low
Loyal readersRecent (<30d)Medium (2-3/month)Full frequencyLow
Potentially loyalModerate (30-60d)High (when they open)Full frequency, re-engagement nudgeLow-medium
At riskOlder (60-90d)DecliningReduced frequency, stronger subject linesMedium
Cannot lose themOld (90-180d)Was high, now stoppedRe-engagement sequence, then decideMedium-high
HibernatingVery old (>180d)Low or zeroRe-permission email or suppressHigh
LostNo history or >365dZeroSuppressVery high

Acquisition Source Quality Segmentation

Acquisition source is a persistent attribute — a contact acquired through a co-registration arrangement in 2022 carries higher complaint risk than a contact who signed up through the website's opt-in form in 2024, even if both have similar recent engagement histories. This is because acquisition source quality determines the initial intent level of the subscriber and the accuracy of their email address — opt-in form contacts have higher initial intent and lower address error rates than co-registration contacts.

Building acquisition source segmentation: tag every contact at import with their acquisition source (website_form, checkout_optin, webinar_registration, coregistration_vendorname, event_list_import, cold_purchased). Calculate the per-source complaint rate and bounce rate from historical campaign data. Create a source quality tier (tier 1: below 0.03% complaint rate, tier 2: 0.03-0.08%, tier 3: above 0.08%). Apply different sending strategies per tier — maximum frequency to tier 1, reduced frequency to tier 2, reduced frequency with more frequent re-permission checking to tier 3.

The acquisition source quality attribution compounds over time because low-quality acquisition sources continue generating above-average complaint rates even years after acquisition — the initial intent level is a persistent characteristic of the relationship. Maintaining source quality segmentation indefinitely (not just for the first few months after a contact is acquired) produces better long-term deliverability than treating all contacts equally once they have been on the list for a sufficient period.

Predictive Engagement Segmentation

Predictive engagement segmentation uses historical engagement patterns to predict which contacts are likely to engage with (or complain about) a future send — enabling prospective segmentation decisions rather than reactive ones. Machine learning models trained on the programme's historical campaign and contact data can predict engagement probability and complaint probability for each contact for a given campaign, enabling the sending system to include only contacts with predicted high engagement and low complaint probability.

A simplified predictive model achievable without ML infrastructure: score each contact's engagement trajectory (improving, stable, or declining) from their engagement history over the past 6 months. Contacts on an improving trajectory (engagement score increasing month-over-month) are more likely to engage with the next send than contacts on a declining trajectory, even if both have similar current engagement scores. Sending to improving-trajectory contacts generates better reputation signals per send than sending to a mixed trajectory pool of the same engagement score average.

ESP platforms with built-in predictive engagement: Klaviyo's Predictive Analytics (predicts next order date, lifetime value, and churn risk for e-commerce contacts), Salesforce Marketing Cloud's Einstein Engagement Scoring (predicts email engagement probability), and HubSpot's AI-based contact scoring. These tools make predictive segmentation accessible without custom ML model development for programmes using these platforms.

ISP-Specific Sending Segmentation

Segmenting the active list by recipient ISP domain and applying ISP-specific sending strategies enables deliverability optimisation that unified list sending cannot achieve. The practical applications:

ISP-specific frequency calibration: A programme that has an excellent Gmail reputation (High domain, 0.02% spam rate) but a Yellow SNDS status at Microsoft can send at full frequency to Gmail addresses while reducing frequency to Microsoft-hosted addresses until SNDS status improves to Green. This ISP-specific frequency reduction protects Microsoft reputation without reducing Gmail performance.

ISP-specific warmup audience selection: During IP warmup, prioritise Gmail addresses for the warmup sends — Gmail's engagement-based reputation model benefits most from the positive signals generated by high-engagement warmup recipients. Microsoft warmup priority should focus on corporate @company.com addresses (Microsoft 365) rather than consumer Outlook.com addresses, since the corporate Microsoft environment is the primary B2B delivery target.

ISP-specific content testing: A subject line that generates 32% open rate at Gmail addresses may generate 24% at Microsoft-hosted addresses — Microsoft EOP's more aggressive spam filtering and the corporate environment's lower email engagement baseline produce different engagement rates for the same content. Per-ISP performance comparison reveals which content performs best in each filtering environment.

Per-Segment Sending Strategy and Frequency

The engagement-scored segments require different sending strategies that match each segment's engagement quality:

Score 70-100 (Champions and Loyal readers): Maximum programme frequency. These contacts are the reputation-building engine — their opens, clicks, and lack of complaints are the positive signals that sustain High domain reputation. Test new content formats, subject line styles, and timing variations within this segment before rolling out to the broader list.

Score 40-69 (Moderate engagement): Standard frequency, carefully curated content. These contacts engage selectively — they respond to the most relevant content and ignore less relevant sends. Higher content quality standards for this segment produce better engagement rates than frequency increases. Monitor complaint rate from this segment separately — a spike indicates frequency or content quality has crossed the threshold for this engagement level.

Score 20-39 (Declining engagement): Reduced frequency — maximum 2 sends per week regardless of the programme's standard cadence. Focus on the highest-value offers or most engaging content. Any contact in this score range that does not engage in 2 consecutive months should move to a re-engagement sequence.

Score below 20 (Lapsed): Re-engagement sequence (2-3 emails maximum) then suppression if no response. Never include in standard campaigns — their complaint rate in standard sends consistently degrades the programme's reputation signals.

Automating Segmentation in Your Platform

Advanced segmentation is only operationally sustainable when automated — manual segment updates cannot keep pace with the daily engagement signal changes that drive accurate scoring. The automation architecture:

Daily engagement score recalculation: a scheduled job runs each night that updates each contact's engagement score based on the day's campaign opens, clicks, and conversion events. The updated scores write to a contact attribute in the CRM or ESP database. Campaign filters reference the engagement score attribute at injection time — so every campaign send automatically includes the current score-filtered audience without manual segment management.

Automated re-engagement trigger: when a contact's engagement score drops below the threshold for their current segment (from Score 40+ to Score 30), a re-engagement sequence trigger fires automatically — no manual monitoring required. The re-engagement sequence runs; contacts who respond increase their score and remain active; contacts who do not respond are automatically suppressed after the sequence completes.

Advanced list segmentation applied consistently — with engagement scoring, RFM tiering, acquisition source quality tracking, predictive trajectory assessment, and ISP-specific strategy — produces the reputation signal quality that consistently achieves and sustains High Gmail domain reputation. The segmentation investment is in data infrastructure and automation logic, not in ongoing manual effort. Build it once; maintain the data model as the programme evolves; and the segmentation system will continuously route the right contacts to the right sending strategy, generating the reputation signals that make High deliverability self-sustaining.

Measuring Segmentation Impact on Deliverability

The deliverability impact of advanced segmentation is measurable — and should be measured to confirm the investment is producing the expected outcomes. Compare Gmail Postmaster Tools spam rate for campaigns sent to the full "active" list versus campaigns sent only to the score 70+ Champions and Loyal readers segment. The high-score segment consistently produces 30-60% lower spam rates than the full active list, confirming that the segmentation is correctly identifying the contacts that generate the best deliverability signals.

Track click rate by segment tier: Champions at score 70-100 typically generate 3-5x higher click rates than the score 20-39 declining segment. This engagement rate difference is both a commercial performance indicator (the high-score segments generate more revenue per send) and a deliverability indicator (the higher engagement generates the reputation signals that sustain inbox placement). The segment performance data, reviewed monthly, identifies whether segment definitions need recalibration -- if the score 40-69 segment is performing more like the score 20-39 segment, the engagement scoring thresholds may need adjustment to maintain accurate tier separation.

Advanced segmentation is not a one-time configuration -- it is an ongoing data practice. The engagement patterns that define high-quality segments evolve as the programme's audience evolves. Build the measurement feedback loop; review segment performance monthly; recalibrate thresholds when segment performance data indicates drift; and the segmentation model will maintain its accuracy as the programme grows and the audience changes. That accuracy is what makes advanced segmentation the deliverability investment that consistently compounds -- improving reputation signals, reducing complaint rates, and sustaining High domain reputation through every audience evolution the programme encounters.

Advanced segmentation is where email deliverability management becomes a precision instrument. The programme that knows exactly which contacts generate its best reputation signals, which acquisition sources produce its worst complaint rates, and which ISPs need ISP-specific frequency adjustments has the information to make every sending decision optimally. That information quality is the competitive advantage that distinguishes deliverability excellence from deliverability adequacy -- and excellence compounds over time in ways that adequacy never will.

H
Henrik Larsen

Deliverability Manager at Cloud Server for Email. Specialising in email deliverability, infrastructure architecture, and high-volume sending operations.