{{--
Newsletter Base Template - Atomic Design System
Includes unsubscribe link and CAN-SPAM compliance
Required variables:
- $subject: Email subject line
- $preview_text: Preview text shown in email clients
- $unsubscribe_url: Unsubscribe link (use {{UNSUBSCRIBE_URL}} placeholder for campaigns)
Optional variables:
- $preferences_url: Link to preference center
- $email: Recipient email address
--}}
{{-- Load colors if not already defined --}}
@if(!isset($colors))
@include('emails.partials.brand-colors')
@endif
{{ $subject ?? 'Global Gala Newsletter' }}
{{ $preview_text ?? 'Global Gala Newsletter' }}
|
|
|
{{ $slot }}
|
|
You received this email because you subscribed to Global Gala's newsletter.
|
|
Unsubscribe
@if(isset($preferences_url))
|
Update Preferences
@endif
|
|
Global Gala
{{ config('app.url', 'https://globalgala.com') }}
Global Gala Ltd
3 Park Road, London
N8 8TE, United Kingdom
|
|
© {{ date('Y') }} Global Gala. All rights reserved.
@if(isset($email))
This email was sent to {{ $email }}.
@endif
|
|
|