30 lines
675 B
PHP
30 lines
675 B
PHP
@extends('layout.emails')
|
|
|
|
@section('preheader')
|
|
{!! trans('cachet.subscriber.email.maintenance.html-preheader', ['app_name' => $app_name]) !!}
|
|
@stop
|
|
|
|
@section('content')
|
|
{!! trans('cachet.subscriber.email.maintenance.html', ['app_name' => $app_name]) !!}
|
|
|
|
<p>{{ $scheduled_at }}</p>
|
|
|
|
<p>
|
|
{!! $status !!}
|
|
</p>
|
|
|
|
<p>
|
|
{!! $html_content !!}
|
|
</p>
|
|
|
|
@if($show_support)
|
|
<p>{!! trans('cachet.powered_by', ['app' => $app_name]) !!}</p>
|
|
@endif
|
|
<p>
|
|
<small><a href="{{ $manage_link }}">{!! trans('cachet.subscriber.email.manage') !!}</a></small>
|
|
</p>
|
|
<p>
|
|
<small><a href="{{ $unsubscribe_link }}">{!! trans('cachet.subscriber.email.unsubscribe') !!}</a></small>
|
|
</p>
|
|
@stop
|