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

24 lines
514 B
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<!DOCTYPE html>
2014-04-02 14:28:23 +02:00
<html>
2013-11-26 13:45:07 +01:00
<head>
<meta charset="utf-8">
</head>
<body>
2014-01-29 11:41:38 +01:00
{{ $clientName }},<p/>
2014-04-02 14:28:23 +02:00
{{ trans('texts.invoice_message', ['amount' => $invoiceAmount]) }}<p/>
2014-01-29 11:41:38 +01:00
{{ $link }}<p/>
@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
2013-11-26 13:45:07 +01:00
2014-05-11 19:14:44 +02:00
<p/>
{{ trans('texts.ninja_email_footer', ['site' => '<a href="'.SITE_URL.'">Invoice Ninja</a>']) }}
2013-11-26 13:45:07 +01:00
</body>
</html>