@include('front.inner-layout.head')
Loading…
Client Recalls
@csrf
You've reached out once, but your client still hasn't booked an appointment. They might be busy or have missed your message. A second friendly check-in can make a difference and show you're attentive to their needs.
@if(count($newClients))
Sending to {{ $newClients->count() }} recipient/s
@foreach( $newClients as $key => $value )
@endforeach @endif
Customise your email message
Email subject line
Personalisation
Client name
{{--
Client surname
Preferred name
--}}
Booking link
Last appointment date
Service provider name
My business name
@php $email_subject_msg = $recall_second_followup_email_subject_message ?? ""; @endphp
{{$email_subject_msg ?? ""}}
Email body text
Personalisation
Client name
{{--
Client surname
Client first name
Preferred name
--}}
Booking link
Last appointment date
Service provider name
My business name
@php $msg = $recall_second_followup_email_body_message ?? ""; $letters = strlen($msg); @endphp
{{$msg ?? ""}}
Send now
@include('sweet::alert') @include('front.practitioner.dashboard.modal.client_follow_ups');