1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/emails/payment_confirmation_html.blade.php

13 lines
259 B
PHP
Raw Normal View History

2015-03-16 22:45:25 +01:00
<!DOCTYPE html>
<html lang="{{ App::getLocale() }}">
<head>
<meta charset="utf-8">
</head>
2015-12-16 12:49:26 +01:00
<body>
@if ($account->enable_email_markup)
@include('emails.partials.client_view_action', ['link' => $link])
@endif
{!! $body !!}
</body>
2015-03-16 22:45:25 +01:00
</html>