Cachet/resources/views/emails/incidents/new-html.blade.php

28 lines
729 B
PHP
Raw Normal View History

2015-05-24 16:33:03 -05:00
@extends('layout.emails')
@section('preheader')
{!! trans('cachet.subscriber.email.incident.html-preheader', ['app_name' => Setting::get('app_name')]) !!}
@stop
@section('content')
{!! trans('cachet.subscriber.email.incident.html-preheader', ['app_name' => Setting::get('app_name')]) !!}
<p>
{!! $status !!}
2015-08-17 15:50:34 -05:00
@if($has_component)
({{ $component_name }})
@endif
2015-05-24 16:33:03 -05:00
</p>
<p>
2015-08-17 15:50:34 -05:00
{!! $html_content !!}
2015-05-24 16:33:03 -05:00
</p>
@if(Setting::get('show_support'))
<p>{!! trans('cachet.powered_by', ['app' => Setting::get('app_name')]) !!}</p>
@endif
<p>
2015-08-17 15:50:34 -05:00
<small><a href="{{ $unsubscribe_link }}">{!! trans('cachet.subscriber.email.unsubscribe') !!}</a></small>
2015-05-24 16:33:03 -05:00
</p>
@stop