{{--
Welcome Email - Atomic Design System v2.0 (Luxury Edition)
Sent when a user creates an account on Global Gala
Note: $colors automatically injected via View Composer
--}}
@component('emails.layouts.base', [
'title' => 'Welcome to Global Gala',
'previewText' => "Welcome aboard, {$userName}! Start exploring amazing events.",
'colors' => $colors,
'showUnsubscribe' => $showUnsubscribe ?? false,
'unsubscribeUrl' => $unsubscribeUrl ?? null
])
{{-- Main Heading --}}
@component('emails.atoms.h1', ['colors' => $colors])
Welcome to Global Gala, {{ $userName }}
@endcomponent
{{-- Introduction --}}
@component('emails.atoms.text', ['colors' => $colors])
Thank you for joining Global Gala, your premier destination for event ticketing and unforgettable experiences.
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
Your account has been successfully created with the email: {{ $userEmail }}
@endcomponent
@include('emails.atoms.spacer', ['height' => '30px'])
{{-- What You Can Do Section --}}
@component('emails.organisms.section', [
'background' => 'neutral',
'colors' => $colors
])
@component('emails.atoms.h2', ['colors' => $colors])
What You Can Do Now
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
Your Global Gala account gives you access to:
@endcomponent
|
|
Browse Events – Discover upcoming concerts, shows, and experiences
|
|
|
|
Interactive Seating – Select your perfect seats with our visual seating system
|
|
|
|
Manage Bookings – Track all your orders from your account dashboard
|
|
|
|
Exclusive Access – Get early bird offers and VIP notifications
|
|
@endcomponent
@include('emails.atoms.spacer', ['height' => '30px'])
{{-- Call to Action --}}
@component('emails.molecules.button', [
'href' => $frontendUrl . '/events',
'variant' => 'primary',
'size' => 'large',
'colors' => $colors
])
Explore Events
@endcomponent
@include('emails.atoms.spacer', ['height' => '30px'])
{{-- Support Section --}}
@component('emails.organisms.alert-box', [
'variant' => 'info',
'colors' => $colors
])
Need help getting started? Our support team is here to assist you with any questions about booking tickets or using your account.
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
{{-- Closing --}}
@component('emails.atoms.text', ['colors' => $colors])
Happy booking!
The Global Gala Team
@endcomponent
{{-- Email Tracking Pixel (Phase 4 - 2025-10-28) --}}
@if(isset($trackingPixelUrl) && $trackingPixelUrl)
@endif
@endcomponent