@extends('emails.layouts.base') @section('content')

{{ __('Your Data Export is Ready') }}

{{ __('Hello :name,', ['name' => $userName]) }}

{{ __('Your personal data export has been prepared and is ready for download.') }}

{{ __('The export includes your profile information, projects, subscriptions, and activity history.') }}

@include('emails.partials.button', [ 'url' => $downloadUrl, 'text' => __('Download Your Data'), 'primaryColor' => $primaryColor, 'primaryForeground' => $primaryForeground ])

{!! __('Important: This download link will expire on :expiresAt. Please download your data before then.', ['expiresAt' => $expiresAt]) !!}

{{ __('If you did not request this export, please contact our support team immediately.') }}

@endsection