Email Delivery & Multi-Inbox Rotation

Outbound Mailboxes & Multi-Inbox Rotation

Manage multiple sending inboxes with gradual warmup ramps, DNS compliance health checks, and round-robin rotation.

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Active Sender Inboxes ({{ $mailboxes->count() }})

Outbound pitches and follow-ups are automatically distributed across these inboxes to preserve domain health.

Auto Round-Robin Enabled
@if($mailboxes->isEmpty())

No Sender Mailboxes Connected

Add your Google Workspace, Microsoft 365, or SMTP inboxes to rotate sending volume and achieve 99%+ deliverability.

@else
@foreach($mailboxes as $mbox)
{{ substr($mbox->name, 0, 2) }}
{{ $mbox->name }} ({{ $mbox->email }}) @if($mbox->health_status === 'healthy') Healthy @elseif($mbox->health_status === 'warning') Warning @else Error @endif @if($mbox->warmup_enabled) Warmup ({{ $mbox->warmup_progress_percentage }}%) @endif
Host: {{ $mbox->smtp_host }}:{{ $mbox->smtp_port }} ({{ strtoupper($mbox->smtp_encryption) }}) Last sent: {{ $mbox->last_sent_at ? $mbox->last_sent_at->diffForHumans() : 'Never' }} @if($mbox->warmup_enabled) Warmup Cap: {{ $mbox->effective_daily_limit }} / {{ $mbox->daily_limit }} max @endif
{{ $mbox->warmup_enabled ? 'Warmup Quota' : 'Daily Quota' }} {{ $mbox->sent_today }} / {{ $mbox->effective_daily_limit }}
@php $effectiveLimit = $mbox->effective_daily_limit; $pct = $effectiveLimit > 0 ? min(100, round(($mbox->sent_today / $effectiveLimit) * 100)) : 0; $barColor = $pct >= 90 ? 'bg-amber-500' : ($mbox->warmup_enabled ? 'bg-orange-500' : 'bg-indigo-600'); @endphp
@csrf
@csrf
@csrf @method('DELETE')
@endforeach
@endif
@csrf @method('PUT')

Default Workspace Fallback SMTP

Used for transactional system emails and notifications

Fallback Server Credentials

Diagnostic Test

Send an isolated test email to verify host accessibility without enrolling contacts.

@csrf

Total Monthly Dispatches

Delivered {{ $usage['sent_this_month'] }}
Failed {{ $usage['failed_this_month'] }}

Connect Sender Mailbox

@csrf

Throttles initial dispatch volume and ramps daily limit gradually to protect domain reputation and avoid spam filters.

Domain Deliverability & DNS Inspector