@extends('layouts.customer') @section('title', 'Email Warmups') @section('page-title', 'Email Warmups') @section('content')
Search
New Warmup
@forelse($warmups as $warmup) @empty @endforelse
Name Server Progress Sent Health Status Actions
{{ $warmup->name }}
{{ $warmup->from_email }}
{{ $warmup->deliveryServer?->name ?? '—' }}
{{ $warmup->current_day }}/{{ $warmup->total_days }}
{{ number_format($warmup->total_sent) }} @php $health = $warmup->getHealthScore(); @endphp {{ ucfirst($health) }} {{ ucfirst($warmup->status) }}
View @if($warmup->canStart())
@csrf Start
@endif @if($warmup->canPause())
@csrf Pause
@endif

No warmups found

Get started by creating a new email warmup.

New Warmup
@if($warmups->hasPages())
{{ $warmups->links() }}
@endif
@endsection