Initial commit
This commit is contained in:
21
resources/views/emails/members/activated.blade.php
Normal file
21
resources/views/emails/members/activated.blade.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<x-mail::message>
|
||||
# Membership Activated!
|
||||
|
||||
Congratulations, {{ $member->full_name }}!
|
||||
|
||||
Your membership has been activated and you now have full access to all member benefits.
|
||||
|
||||
**Membership Details:**
|
||||
- **Type:** {{ $member->membership_type_label }}
|
||||
- **Start Date:** {{ $member->membership_started_at->format('Y-m-d') }}
|
||||
- **Expiry Date:** {{ $member->membership_expires_at->format('Y-m-d') }}
|
||||
|
||||
You can now access exclusive resources, participate in events, and enjoy all member privileges.
|
||||
|
||||
<x-mail::button :url="route('member.dashboard')">
|
||||
View Your Membership
|
||||
</x-mail::button>
|
||||
|
||||
Thanks,<br>
|
||||
{{ config('app.name') }}
|
||||
</x-mail::message>
|
||||
17
resources/views/emails/members/activation-text.blade.php
Normal file
17
resources/views/emails/members/activation-text.blade.php
Normal file
@@ -0,0 +1,17 @@
|
||||
@php
|
||||
/** @var \App\Models\User $user */
|
||||
@endphp
|
||||
|
||||
{{ __('Hello') }} {{ $user->name }},
|
||||
|
||||
{{ __('You have been registered as a member on :app.', ['app' => config('app.name')]) }}
|
||||
|
||||
{{ __('To activate your online account and set your password, please open the link below:') }}
|
||||
|
||||
{{ $resetUrl }}
|
||||
|
||||
{{ __('If you did not expect this email, you can ignore it.') }}
|
||||
|
||||
{{ __('Thank you,') }}
|
||||
{{ config('app.name') }}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
@php
|
||||
/** @var \App\Models\Member $member */
|
||||
@endphp
|
||||
|
||||
{{ __('Hello') }} {{ $member->full_name }},
|
||||
|
||||
@if ($member->membership_expires_at)
|
||||
{{ __('This is a reminder that your membership with :app is scheduled to expire on :date.', ['app' => config('app.name'), 'date' => $member->membership_expires_at->toDateString()]) }}
|
||||
@else
|
||||
{{ __('This is a reminder to check your membership status with :app.', ['app' => config('app.name')]) }}
|
||||
@endif
|
||||
|
||||
{{ __('If you have already renewed, you can ignore this email.') }}
|
||||
|
||||
{{ __('Thank you,') }}
|
||||
{{ config('app.name') }}
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
<x-mail::message>
|
||||
# Welcome to {{ config('app.name') }}!
|
||||
|
||||
Thank you for registering, {{ $member->full_name }}!
|
||||
|
||||
Your account has been created successfully. To complete your membership registration, please submit your payment proof.
|
||||
|
||||
**Next Steps:**
|
||||
1. Log in to your account
|
||||
2. Navigate to "Submit Payment"
|
||||
3. Upload your payment receipt (bank transfer, convenience store, etc.)
|
||||
4. Our team will verify your payment within 3-5 business days
|
||||
|
||||
**Annual Membership Fee:** TWD 1,000
|
||||
|
||||
<x-mail::button :url="route('member.dashboard')">
|
||||
Go to Dashboard
|
||||
</x-mail::button>
|
||||
|
||||
If you have any questions, please contact us.
|
||||
|
||||
Thanks,<br>
|
||||
{{ config('app.name') }}
|
||||
</x-mail::message>
|
||||
Reference in New Issue
Block a user