@component('mail::message') # Your Data Export Dear {{ $name }}, Please find below the data we hold associated with your account in response to your **{{ $requestType }}** request. @component('mail::panel') **Account Information** @if(isset($exportData['account'])) - **Name:** {{ $exportData['account']['name'] ?? 'N/A' }} - **Email:** {{ $exportData['account']['email'] ?? 'N/A' }} - **Registered:** {{ $exportData['account']['registered_at'] ?? 'N/A' }} @else No account found for this email address. @endif @endcomponent @if(!empty($exportData['sites'])) **Connected Sites ({{ count($exportData['sites']) }}):** @foreach($exportData['sites'] as $site) - {{ $site['name'] }} ({{ $site['domain'] }}) — Added {{ $site['added_at'] }} @endforeach @endif @if(isset($exportData['recommendations_count'])) - **Recommendations generated:** {{ $exportData['recommendations_count'] }} - **Audit log entries:** {{ $exportData['audit_log_count'] ?? 0 }} @endif If you have questions about this data, please contact our support team. Thanks,
{{ $appName }} Team @endcomponent