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

22 lines
380 B
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
</head>
<body>
2014-01-29 11:41:38 +01:00
{{ $clientName }},<p/>
To view your invoice for {{ $invoiceAmount }}, click the link below:<p/>
{{ $link }}<p/>
@if ($emailFooter)
{{ $emailFooter }}
@else
Best regards,<br/>
{{ $accountName }}
@endif
2013-11-26 13:45:07 +01:00
</body>
</html>