mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 19:24:03 +01:00
25 lines
651 B
PHP
25 lines
651 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 !!}
|
|
</p>
|
|
|
|
<p>
|
|
{!! $htmlContent !!}
|
|
</p>
|
|
|
|
@if(Setting::get('show_support'))
|
|
<p>{!! trans('cachet.powered_by', ['app' => Setting::get('app_name')]) !!}</p>
|
|
@endif
|
|
<p>
|
|
<small><a href="{{ $unsubscribeLink }}">{!! trans('cachet.subscriber.email.unsuscribe') !!}</a></small>
|
|
</p>
|
|
@stop
|