@include('emails.common.header')
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
@if($contact)
Hello {{$contact->first_name }},
@else
Hello All,
@endif
@endcomponent
@component('emails.common.p')
Empower would like to confirm the following interview schedule as per your request:
@endcomponent
@component('emails.common.p')
In case you need a reminder, you can click on the candidate’s name to view their CV in your web browser.
@endcomponent
@foreach($interviewsWithCandidate as $key => $interview)
@if(isset($interview->user) && isset($interview->user->pdfcv) && $interview->apply_by == 'pdf_cv')
{{$interview->user->first_name }}
{{$interview->user->last_name }}
@elseif(isset($interview->user) && $interview->apply_by == 'cv_template'
&& isset($interview->user->profiles) && $interview->user->profiles->cv_template_token != null)
{{$interview->user->first_name }} {{$interview->user->last_name }}
@else
{{$interview->user->first_name }} {{$interview->user->last_name}}
@endif
@if($interview->type == 'Telephone')
Interview Type: Phone
@else
Interview Type: {{ ($interview->type == 'Skype') ? 'Virtual' : $interview->type }}
@endif
Date: {{ $interview->interview_date_long }}
Time: {{ $interview->interview_time_24 }}
@if($interview->type == 'Face To Face')
Location: {{ $interview->location }}
@endif
@if($interview->type == 'Skype')
Virtual Address: {{ $interview->skype }}
@endif
@if($interview->type == 'Telephone')
Phone Number: {{ $interview->telephone }}
@endif
@if($interview->notes_for_client)
Additional Note: {{ $interview->notes_for_client }}
@endif
@endforeach
@component('emails.common.p')
Once interviews are complete please tell us how you would like to move forward using one of the following methods:
@endcomponent
@component('emails.common.ul')
Email talent@empower.co.tz
Contact your Talent Advisor directly using the details below
@endcomponent
@component('emails.common.p')
Your Talent Advisor is:
{{ $job->recruiter->present()->name }}
{{ $job->recruiter->email }}
{{ $job->recruiter->mobile }}
@if($job->recruiter->profiles && $job->recruiter->profiles->linkedin_profile)
{{ $job->recruiter->profiles->linkedin_profile }} - Let's connect
@endif
@endcomponent @endcomponent
@endcomponent @include('emails.common.footer')