@component('mail::message') # Subscription Cancelled Hi {{ $subscription->customer->name }}, Your **{{ $subscription->package->name }}** subscription has been cancelled as requested. @component('mail::panel') **Subscription:** {{ $subscription->package->name }} **Cancelled On:** {{ $subscription->cancelled_at->format('M d, Y') }} **Access Until:** {{ $subscription->current_period_end->format('M d, Y') }} @if($subscription->cancel_reason) **Reason:** {{ $subscription->cancel_reason }} @endif @endcomponent ## What Happens Now? - You'll continue to have access until **{{ $subscription->current_period_end->format('M d, Y') }}** - You can still use your remaining **{{ $subscription->credits_remaining }}** credits - You won't be charged for future billing periods - Your subscription will end on {{ $subscription->current_period_end->format('M d, Y') }} ## We're Sorry to See You Go We hope you enjoyed using our service. If there's anything we could have done better, we'd love to hear from you. @component('mail::button', ['url' => 'mailto:' . ($website->settings['business_email'] ?? 'support@example.com')]) Share Your Feedback @endcomponent ## Come Back Anytime! Changed your mind? You can reactivate your subscription anytime before {{ $subscription->current_period_end->format('M d, Y') }}. @component('mail::button', ['url' => url('/')]) Reactivate Subscription @endcomponent Thanks for being part of {{ $website->name }}. Best regards,
{{ $website->name }} @component('mail::subcopy') If you didn't request this cancellation, please contact us immediately. @endcomponent @endcomponent