@include('emails.common.header')
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
Hello {{$contact->first_name }},
@endcomponent
@component('emails.common.p')
You recently interviewed candidates for the {{ $job->title }} role.
@endcomponent
@component('emails.common.p')
In an effort to digitize the process and improve efficiency you can provide us feedback on the interviews
through our Digital Feedback Form: Link to Digital Feedback Form
@endcomponent
If you would like a reminder on the Candidates Presented please click on the name to review their CV.
@component('emails.common.ul')
@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
@endforeach
@endcomponent
@component('emails.common.p')
In case of any question feel free to contact your Talent Advisor:
@endcomponent
@component('emails.common.p')
{{ $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
{{ config('app.url')}}
@endcomponent
@endcomponent
@endcomponent
@include('emails.common.footer')