@if ($exportStarted || $exportExists)

Export

@forelse (Cache::get('export-status', []) as $name => $data)

@if ($data['finished']) {{ $name }} @elseif ($data['error']) {{ $name }} — {{ $data['error'] }} @else {{ $name }} @endif

@empty

{{ __mc('Export started...') }}

@endforelse
@if ($exportExists)

Created on {{ \Illuminate\Support\Facades\Date::createFromTimestamp(Storage::disk(config('mailcoach.export_disk'))->lastModified(Spatie\Mailcoach\Livewire\Export\ExportComponent::obfuscatedExportDirectory().'/mailcoach-export.zip'))->format('Y-m-d H:i:s') }}

@endif @else

Choose which data you want to export

Mailcoach can export (almost) all data to be used in a different Mailcoach instance.

The exporter will not export the following data:

  • Users
  • Individual send data
  • Clicks / Opens / Unsubscribes (it will only export the calculated statistics)
  • Any uploaded media

Email lists

All

This includes subscribers, tags & segments

@foreach($emailLists as $id => $name) @endforeach

Campaigns

All
@forelse($campaigns as $id => $name) @empty No campaigns found, campaigns require their email list to be exported as well. @endforelse

Templates

All
@forelse($templates as $id => $name) @empty No templates found. @endforelse

Automations

All

This includes triggers, actions & action-subscriber state

"Send automation mail" actions will need manual adjustment to the correct Automation Mail.
@forelse($automations as $id => $name) @empty No automations found, automations require their email list to be exported as well. @endforelse

Automation Mails

All
@forelse($automationMails as $id => $name) @empty No automation mails found. @endforelse

Transactional Mail Templates

All
@forelse($transactionalMailTemplates as $id => $name) @empty No transactional mail templates found. @endforelse
@endif