@section('page_title')
OSAA - Notify Staff
@stop
@section('page_sub_title')
Notify {{ $info['staff']->getDisplayName() }}
@stop
@section('scripts')
@parent
@stop
@section('jquery_init')
// Success bar
$('.success_bar').animate({ 'top' : 32, 'background-color' : 'rgba(176, 255, 190, 1.0)'}, 1600, 'easeOutQuad', function ()
{
$(this).delay(6000).fadeOut(4000);
$(this).hover(function ()
{
$(this).stop(true).css('opacity', '1.0');
},
function ()
{
$(this).fadeOut(4000);
})
});
// Back button
$('#back_button')
.button({'icons' : {'primary' : 'ui-icon-circle-close'}})
.css({'font-size' : '9pt'});
// Submit button
$('input[type="submit"]')
.button()
.css({'font-size' : '9pt'});
@stop
@section('page_functions')
Cancel
@stop
@section('main_content')
{{-- Success Bar --}}
@if (Session::has('success'))
{{ Session::get('success') }}
@endif
{{-- Errors --}}
@if (Session::has('errors'))
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
E-Mail Header
To:
{{ $info['staff']->getDisplayName() }} ({{ $info['staff']->email }})
CC:
{{ Auth::user()->first_name }} {{ Auth::user()->last_name }} ({{ Auth::user()->email }})
From:
OSAA Website (on behalf of {{ Auth::user()->first_name }} {{ Auth::user()->last_name }})
Replies will be directed to {{ Auth::user()->email }}
Subject:
OSAA Coaching Certification Alert
Preview
Hello {{ $info['staff']->getDisplayName() }},
This e-mail is intended to notify you that you
@if (Helpers::strEqual($info['status'], 'WARNING'))
have one or more required certifications that will expire within the next three months.
@else
have one or more required certifications that are expired or we have no record of your completion.
@endif
The following course(s) need your attention:
@foreach ($info['certs'] as $cert)
Fatal error: Class 'Helpers' not found in /home/osaa/web_app/dev/app/views/schools/mail_staff_certification_reminder.blade.php on line 141