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

The import will not import the following data:

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

Be sure to check your automations after import:

  • "Send automation mail" actions will need manual adjustment to the correct Automation Mail
  • Automations are imported as paused.

Imports can always be reuploaded if something goes wrong.

@if (($steps = Cache::get('import-status', [])) || $importStarted)
where('failed', true)->count() && ! collect($steps)->keys()->contains('Cleanup')) wire:poll.1500ms @endif> @forelse ($steps as $name => $data)

@if ($data['finished']) {{ $name }} @if($data['total']) — {{ number_format($data['total']) }} rows @endif @elseif ($data['failed']) {{ $name }} — {{ $data['message'] }} @else {{ $name }}  {{ round($data['progress'] * 100, 2) }}% @endif

@empty

Import queued...

@endforelse @if(!collect($steps)->where('finished', false)->where('failed', false)->count() && !collect($steps)->keys()->contains('Cleanup'))
Next step is queued...
@endif
@else
@error('file')

{{ $message }}

@enderror
@endif