2015-07-29 09:52:10 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ App::getLocale() }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
</head>
|
2015-03-16 22:45:25 +01:00
|
|
|
<body>
|
2017-01-12 14:12:02 +01:00
|
|
|
@if ($account->emailMarkupEnabled())
|
2015-12-16 12:49:26 +01:00
|
|
|
@include('emails.partials.client_view_action')
|
2015-04-14 20:58:07 +02:00
|
|
|
@endif
|
2015-04-06 08:58:47 +02:00
|
|
|
{!! $body !!}
|
2017-10-22 11:37:24 +02:00
|
|
|
@if (! $account->isPaid())
|
|
|
|
<br/>
|
|
|
|
{!! trans('texts.ninja_email_footer', ['site' => link_to(NINJA_WEB_URL . '?utm_source=email_footer', APP_NAME)]) !!}
|
|
|
|
@endif
|
2015-03-16 22:45:25 +01:00
|
|
|
</body>
|
2017-10-22 11:37:24 +02:00
|
|
|
</html>
|