1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/views/emails/payment_confirmation_html.blade.php
2014-04-02 15:28:23 +03:00

20 lines
384 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
</body>
</html>