mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 11:16:05 +01:00
28 lines
729 B
PHP
28 lines
729 B
PHP
@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 !!}
|
|
@if($has_component)
|
|
({{ $component_name }})
|
|
@endif
|
|
</p>
|
|
|
|
<p>
|
|
{!! $html_content !!}
|
|
</p>
|
|
|
|
@if(Setting::get('show_support'))
|
|
<p>{!! trans('cachet.powered_by', ['app' => Setting::get('app_name')]) !!}</p>
|
|
@endif
|
|
<p>
|
|
<small><a href="{{ $unsubscribe_link }}">{!! trans('cachet.subscriber.email.unsubscribe') !!}</a></small>
|
|
</p>
|
|
@stop
|