@component('mail::layout') {{-- Header --}} @slot('header') @include('email.admin.includes.header') @endslot {{-- Body --}} {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level === 'error') # @lang('Whoops!') @else @endif @endif

Dear {{ $user->first_name }} {{ $user->last_name }},

We are writing to confirm that your account on {{ siteconfig('company_name') }} has been successfully deleted.

As requested, all your personal data, including your submitted podcasts, podcast history, and subscription details, have been permanently removed from our system. This action is irreversible, and your account can no longer be reactivated.

We are sorry to see you go and hope to have the opportunity to serve you again in the future.

If you have any questions or need further assistance, please do not hesitate to contact our support team at {{ getSupportEmail() }}.

Thank you for being a part of our community.

Best regards,
The {{ siteconfig('company_name') }} Team

@if (! empty($salutation))

{{ $salutation }}

@endif {{-- Subcopy --}} @isset($subcopy) @slot('subcopy') @component('mail::subcopy') {{ $subcopy }} @endcomponent @endslot @endisset {{-- Footer --}} @slot('footer') @include('email.admin.includes.footer') @endslot @endcomponent