1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/resources/views/emails/invoice_html.blade.php

12 lines
240 B
PHP
Raw Normal View History

<!DOCTYPE html>
<html lang="{{ App::getLocale() }}">
<head>
<meta charset="utf-8">
</head>
2015-03-16 22:45:25 +01:00
<body>
2017-01-12 14:12:02 +01:00
@if ($account->emailMarkupEnabled())
2015-12-16 12:49:26 +01:00
@include('emails.partials.client_view_action')
2015-04-14 20:58:07 +02:00
@endif
2015-04-06 08:58:47 +02:00
{!! $body !!}
2015-03-16 22:45:25 +01:00
</body>
</html>