mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 06:02:39 +01:00
20 lines
384 B
PHP
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> |