@extends('admin.layouts.email_template') @section('content')

{{__('New Resume Available')}}

{{__('Hello')}} {{ $company->name }},

{{__('A new candidate has posted/updated their resume in your industry on')}} {{ $siteSetting->site_name }}.

{{__('Candidate Information:')}}

  • {{__('Name')}}: {{ $user->getName() }}
  • @if($user->getFunctionalArea('functional_area'))
  • {{__('Functional Area')}}: {{ $user->getFunctionalArea('functional_area') }}
  • @endif @if($user->getCareerLevel('career_level'))
  • {{__('Career Level')}}: {{ $user->getCareerLevel('career_level') }}
  • @endif @if($user->getLocation())
  • {{__('Location')}}: {{ $user->getLocation() }}
  • @endif @if((bool)$user->is_immediate_available)
  • {{__('Status')}}: {{__('Ready for Hire')}}
  • @endif
{{__('View Resume')}}

{{__('Or copy and paste this link in your browser:')}}

{{ $profileUrl }}

{{__('Warm regards')}},
{{ $siteSetting->site_name }} {{__('Team')}}


@endsection