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

21 lines
644 B
PHP
Raw Normal View History

2015-03-16 22:45:25 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
@include('emails.view_action', ['link' => $invoiceLink, 'entityType' => $entityType])
{{ trans('texts.email_salutation', ['name' => $userName]) }} <p/>
{{ trans("texts.notification_{$entityType}_paid", ['amount' => $paymentAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }} <p/>
{{ trans("texts.{$entityType}_link_message") }} <br/>
<a href="{{ $invoiceLink }}">{{ $invoiceLink }}</a><p/>
{{ trans('texts.email_signature') }} <br/>
{{ trans('texts.email_from') }} <p/>
{{ trans('texts.user_email_footer') }} <p/>
</body>
</html>