{{-- Welcome Back Email - Account Setup Invitation Sent to previous customers to create account on new system Note: $colors automatically injected via View Composer --}} @component('emails.layouts.base', [ 'title' => 'Welcome Back to Show Prima', 'previewText' => 'Create your account on our new platform', 'colors' => $colors, 'showUnsubscribe' => $showUnsubscribe ?? false, 'unsubscribeUrl' => $unsubscribeUrl ?? null ]) @component('emails.atoms.h1', ['colors' => $colors]) Welcome Back to Show Prima @endcomponent @component('emails.atoms.text', ['colors' => $colors]) @if($userName) Hello {{ $userName }}, @else Hello, @endif @endcomponent @component('emails.atoms.text', ['colors' => $colors]) We're excited to welcome you back! We've upgraded to a brand new ticketing platform, and we'd love for you to create your account to enjoy all the benefits. @endcomponent @include('emails.atoms.spacer', ['height' => '20px']) {{-- Benefits Section --}} @component('emails.organisms.alert-box', [ 'variant' => 'info', 'title' => 'Why Create an Account?', 'colors' => $colors ]) @endcomponent @include('emails.atoms.spacer', ['height' => '24px']) @component('emails.atoms.text', ['colors' => $colors]) Setting up your account is quick and easy – just click the button below to get started: @endcomponent @include('emails.atoms.spacer', ['height' => '20px']) @component('emails.molecules.button', [ 'href' => $setupUrl, 'variant' => 'primary', 'size' => 'large', 'colors' => $colors ]) Create My Account @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]) {{ $setupUrl }} @endcomponent @include('emails.atoms.spacer', ['height' => '24px']) {{-- Important Information --}} @component('emails.organisms.alert-box', [ 'variant' => 'warning', 'title' => 'Important', 'colors' => $colors ])

This invitation link will expire on {{ $expiryDate }} ({{ $daysUntilExpiry }} day{{ $daysUntilExpiry !== 1 ? 's' : '' }} from now).

Your email address: {{ $email }}

@endcomponent @include('emails.atoms.spacer', ['height' => '20px']) {{-- Security Note --}} @component('emails.atoms.text', ['colors' => $colors]) When you create your account, you'll choose a secure password. This is a completely new system, so your previous login credentials will not work. @endcomponent @include('emails.atoms.spacer', ['height' => '16px']) @component('emails.atoms.text', ['colors' => $colors]) Not interested? No worries! You can continue booking as a guest without creating an account, or simply ignore this email. @endcomponent @include('emails.atoms.spacer', ['height' => '20px']) {{-- Support --}} @component('emails.atoms.text', ['colors' => $colors]) If you have any questions or need assistance, our support team is here to help at info@globalgala.com. @endcomponent @component('emails.atoms.text', ['colors' => $colors]) We look forward to seeing you at our next event! @endcomponent @include('emails.atoms.spacer', ['height' => '8px']) @component('emails.atoms.text', ['colors' => $colors]) Warm regards,
The Show Prima Team @endcomponent @include('emails.atoms.spacer', ['height' => '24px']) {{-- Footer Note --}} @component('emails.atoms.small', ['colors' => $colors]) Security note: This link is unique to your email address and can only be used once. Never share this link with anyone. @endcomponent {{-- Email Open Tracking Pixel (2025-10-28) --}} @if(isset($trackingPixelUrl)) @endif @endcomponent