@component('emails.layouts.html', ['subject' => $action === 'attached' ? trans('Your profile has been linked', [], $locale) : trans('Your profile has been unlinked', [], $locale), 'locale' => $locale]) {{-- Greeting --}}

{{ trans('Hello', [], $locale) }} {{ $recipient->full_name ?? $recipient->name }},

{{-- Main message --}}

@if($action === 'attached') {{ trans('Your profile on', [], $locale) }} {{ config('app.name') }} {{ trans('has been linked to', [], $locale) }} {{ $linkedProfile->name }}. @else {{ trans('Your profile on', [], $locale) }} {{ config('app.name') }} {{ trans('has been unlinked from', [], $locale) }} {{ $linkedProfile->name }}. @endif

{{ trans('You can now switch profiles via your profile menu in the top right corner of our website.', [], $locale) }}

{{-- Button --}} {{-- Closing --}}

{{ timebank_config('mail.platform_sign_off_signature.' . $locale) ?? timebank_config('mail.platform_sign_off_signature.en', 'See you around!') }}

@endcomponent