@include('emails.commonkua.header')
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
Hello {{$user->first_name}},
@endcomponent
@component('emails.common.p')
“Don’t let your lead slip away—follow up now!”
@endcomponent
@component('emails.common.p')
This is a kind reminder to follow up and close the lead you generated recently through the KUA system. Timely follow-up is key to maximizing your sales and commission potential.
@endcomponent
@component('emails.common.p')
See Summary of leads that you are expected to close in the next 7 days
@endcomponent
@component('emails.common.table_with_border')
@component('emails.common.tr')
| Name of Customer |
Contact |
Product of Interest |
Fulfilment date |
@endcomponent
@foreach ($leads as $lead)
@component('emails.common.tr')
{{ $lead->customer_name ?? $lead->business_name ?? '—' }}
|
{{ $lead->phone_number ?? $lead->email ?? '—' }}
|
{{ $lead->product_name ?? '—' }}
|
{{ $lead->expected_closure_date
? \Carbon\Carbon::parse($lead->expected_closure_date)->format('d M Y')
: '—' }}
|
@endcomponent
@endforeach
@endcomponent
@component('emails.common.p')
Click this link for more details regarding your pending leads:
Click Here
@endcomponent
@component('emails.common.p')
Please make sure to update the status of the lead in the system once it is closed. If you need any assistance or face challenges, feel free to reach out to the KUA team for support.
@endcomponent
@component('emails.common.p')
Empowering People. Bridging Markets. Driving Growth.
@endcomponent
@endcomponent
@component('emails.common.td')
@component('emails.commonkua.secondary_footer')
{{-- noQuote --}}
@endcomponent
@endcomponent
@endcomponent
@include('emails.commonkua.footer')