mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
21 lines
400 B
PHP
Executable File
21 lines
400 B
PHP
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
|
|
{{ $clientName }},<p/>
|
|
|
|
{{ trans('texts.invoice_message', ['amount' => $invoiceAmount]) }}<p/>
|
|
{{ $link }}<p/>
|
|
|
|
@if ($emailFooter)
|
|
{{ nl2br($emailFooter) }}
|
|
@else
|
|
{{ trans('texts.email_signature') }}<br/>
|
|
{{ $accountName }}
|
|
@endif
|
|
|
|
</body>
|
|
</html> |