{{--
GDPR Data Export Email - Atomic Design System v2.0
Sent when someone requests an export of their data (GDPR Article 20).
The link downloads a one-time export file generated on click.
Note: $colors automatically injected via View Composer
--}}
@component('emails.layouts.base', [
'title' => 'Your Data Export',
'previewText' => 'Download your Global Gala data export',
'colors' => $colors
])
@component('emails.atoms.h1', ['colors' => $colors])
Your Data Export Is Ready
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
Hello,
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
We received a request to export the personal data associated with this email address under your GDPR right to data portability (Article 20). Click the button below to download a copy:
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
@component('emails.molecules.button', [
'href' => $downloadUrl,
'variant' => 'primary',
'size' => 'large',
'colors' => $colors
])
Download My Data
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
@component('emails.atoms.text', ['colors' => $colors])
Or copy and paste this link into your browser:
@endcomponent
@component('emails.atoms.small', ['colors' => $colors])
{{ $downloadUrl }}
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
@component('emails.organisms.alert-box', [
'variant' => 'warning',
'title' => 'Important',
'colors' => $colors
])
This download link expires in {{ $expiryMinutes }} minutes and can only be used once. Please keep the downloaded file safe — it contains your personal data.
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
If you did not request this, you can safely ignore this email — nothing will be shared unless the link above is used.
@endcomponent
@endcomponent