{{--
GDPR Erasure Confirmation Email - Atomic Design System v2.0
Sent when someone requests deletion of their data (GDPR Article 17).
Clicking the link proves inbox control and triggers anonymisation.
Note: $colors automatically injected via View Composer
--}}
@component('emails.layouts.base', [
'title' => 'Confirm Data Deletion',
'previewText' => 'Confirm your Global Gala data deletion request',
'colors' => $colors
])
@component('emails.atoms.h1', ['colors' => $colors])
Confirm Your Data Deletion Request
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
Hello,
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
We received a request to delete the personal data associated with this email address under your GDPR right to erasure (Article 17). To protect your account, we need you to confirm that this request came from you.
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
Click the button below to confirm and proceed with the deletion:
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
@component('emails.molecules.button', [
'href' => $confirmUrl,
'variant' => 'primary',
'size' => 'large',
'colors' => $colors
])
Confirm Data Deletion
@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])
{{ $confirmUrl }}
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
@component('emails.organisms.alert-box', [
'variant' => 'warning',
'title' => 'Important',
'colors' => $colors
])
This confirmation link expires in {{ $expiryMinutes }} minutes and can only be used once. Deleting your data is permanent and cannot be undone. Some records (such as financial transactions) may be retained where the law requires it.
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
If you did not request this, you can safely ignore this email — no data will be deleted unless the link above is used.
@endcomponent
@endcomponent