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

23 lines
514 B
PHP
Raw Normal View History

2014-01-29 11:41:38 +01:00
<!DOCTYPE html>
2014-04-02 14:28:23 +02:00
<html>
2014-01-29 11:41:38 +01:00
<head>
<meta charset="utf-8">
</head>
<body>
{{ $clientName }},<p/>
2014-04-02 14:28:23 +02:00
{{ trans('texts.payment_message', ['amount' => $paymentAmount]) }}<p/>
2014-01-29 11:41:38 +01:00
@if ($emailFooter)
2014-02-19 14:28:29 +01:00
{{ nl2br($emailFooter) }}
2014-01-29 11:41:38 +01:00
@else
2014-04-02 14:28:23 +02:00
{{ trans('texts.email_signature') }}<br/>
2014-01-29 11:41:38 +01:00
{{ $accountName }}
@endif
2014-05-11 19:14:44 +02:00
<p/>
2014-05-22 20:29:29 +02:00
{{ trans('texts.ninja_email_footer', ['site' => '<a href="https://www.invoiceninja.com">Invoice Ninja</a>']) }}
2014-05-11 19:14:44 +02:00
2014-01-29 11:41:38 +01:00
</body>
</html>