Cachet/resources/views/emails/incidents/new-html.blade.php
2015-06-10 14:49:55 +01:00

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