1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/views/emails/payment_confirmation_html.blade.php
Hillel Coren 36114d251f Bug fixes
2014-05-25 17:48:00 +03:00

25 lines
595 B
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
{{ $clientName }},<p/>
{{ trans('texts.payment_message', ['amount' => $paymentAmount]) }}<p/>
@if ($emailFooter)
{{ nl2br($emailFooter) }}
@else
{{ trans('texts.email_signature') }}<br/>
{{ $accountName }}
@endif
@if ($showNinjaFooter)
<p/>
{{ trans('texts.ninja_email_footer', ['site' => '<a href="https://www.invoiceninja.com/?utm_source=payment_email_footer">Invoice Ninja</a>']) }}
@endif
</body>
</html>