# {{ __('Your :app overview for :period', ['app' => config('app.name'), 'period' => $period]) }}
{{ __('Hello :name,', ['name' => $recipientName]) }}
@if ($subStartedAt && $subEndsAt)
{{ __('Here is the monthly overview of your :plan subscription (from :from to :until).', ['plan' => $planLabel, 'from' => $subStartedAt, 'until' => $subEndsAt]) }}
@else
{{ __('Here is the monthly overview of your :plan account.', ['plan' => $planLabel]) }}
@endif
---
@if (! $isActivated)
## {{ __('Your account is not yet activated') }}
{{ __('Activate your account to appear in the member list and start connecting.') }}
{{ __('Activate your account') }}
@elseif (! $isProfileComplete || ! $isProfileVisible)
## {{ __('Your profile is not yet visible') }}
@if (! $isProfileComplete)
{{ __('Your profile is incomplete. Complete it so other members can find and like you.') }}
@else
{{ __('Your profile is complete, but not yet set to visible. Make it visible so other members can find you.') }}
@endif
{{ __('Complete my profile') }}
@else
## {{ __('Your activity') }}
@if ($newLikes > 0 || $newMatches > 0)
| | |
|---|---|
@if ($newLikes > 0)
| 👀 **{{ __('New likes received') }}** | {{ $newLikes }} |
@endif
@if ($newMatches > 0)
| 🎉 **{{ __('New matches') }}** | {{ $newMatches }} |
@endif
@if (! $isPremium)
| 🔗 **{{ __('Matches used') }}** | {{ $matchesUsed }} / 3 |
| 💬 **{{ __('Messages used') }}** | {{ $messagesUsed }} / 30 |
@endif
@else
{{ __('No new likes or matches this month — keep completing your profile to improve your visibility!') }}
@if (! $isPremium)
| | |
|---|---|
| 🔗 **{{ __('Matches used') }}** | {{ $matchesUsed }} / 3 |
| 💬 **{{ __('Messages used') }}** | {{ $messagesUsed }} / 30 |
@endif
@endif
{{ __('Go to my overview') }}
@endif
@php $showFeatures = count($newFeatures) > 0 || (!empty($featuresCtaUrl) && !empty($featuresCtaLabel)); @endphp
@if ($showFeatures)
---
## {{ __("What's new on :app", ['app' => config('app.name')]) }}
@foreach ($newFeatures as $feature)
- {{ $feature }}
@endforeach
@if (!empty($featuresCtaUrl) && !empty($featuresCtaLabel))
{{ $featuresCtaLabel }}
@endif
@endif
@php $showTips = count($tips) > 0 || (!empty($tipsCtaUrl) && !empty($tipsCtaLabel)); @endphp
@if ($showTips)
---
## {{ __('Tips for efficient use') }}
@foreach ($tips as $tip)
- {{ $tip }}
@endforeach
@if (!empty($tipsCtaUrl) && !empty($tipsCtaLabel))
{{ $tipsCtaLabel }}
@endif
@endif
---
{{ __('You receive this email because you enabled the monthly digest. You can') }} [{{ __('unsubscribe here') }}]({{ $unsubscribeUrl }}).
{{ config('app.name') }}