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

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>