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

26 lines
612 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-05-20 23:40:09 +02:00
{{ trans("texts.{$entityType}_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-25 15:40:09 +02:00
@if ($showNinjaFooter)
2014-05-11 19:14:44 +02:00
<p/>
2014-05-25 16:48:00 +02:00
{{ trans('texts.ninja_email_footer', ['site' => '<a href="https://www.invoiceninja.com/?utm_source=view_email_footer">Invoice Ninja</a>']) }}
2014-05-25 15:40:09 +02:00
@endif
2014-05-11 19:14:44 +02:00
2013-11-26 13:45:07 +01:00
</body>
</html>