1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/emails/payment_confirmation_html.blade.php
2017-10-22 12:37:24 +03:00

17 lines
441 B
PHP

<!DOCTYPE html>
<html lang="{{ App::getLocale() }}">
<head>
<meta charset="utf-8">
</head>
<body>
@if ($account->emailMarkupEnabled())
@include('emails.partials.client_view_action', ['link' => $link])
@endif
{!! $body !!}
@if (! $account->isPaid())
<br/>
{!! trans('texts.ninja_email_footer', ['site' => link_to(NINJA_WEB_URL . '?utm_source=email_footer', APP_NAME)]) !!}
@endif
</body>
</html>