1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/resources/views/emails/invoice_paid_html.blade.php
2017-01-12 15:12:02 +02:00

32 lines
832 B
PHP

@extends('emails.master_user')
@section('markup')
@if ($account->emailMarkupEnabled())
@include('emails.partials.user_view_action')
@endif
@stop
@section('body')
<div>
{{ trans('texts.email_salutation', ['name' => $userName]) }}
</div>
&nbsp;
<div>
{{ trans("texts.notification_{$entityType}_paid", ['amount' => $paymentAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }}
</div>
&nbsp;
<div>
<center>
@include('partials.email_button', [
'link' => $invoiceLink,
'field' => "view_{$entityType}",
'color' => '#0b4d78',
])
</center>
</div>
&nbsp;
<div>
{{ trans('texts.email_signature') }} <br/>
{{ trans('texts.email_from') }}
</div>
@stop