mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
32 lines
832 B
PHP
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>
|
|
|
|
<div>
|
|
{{ trans("texts.notification_{$entityType}_paid", ['amount' => $paymentAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }}
|
|
</div>
|
|
|
|
<div>
|
|
<center>
|
|
@include('partials.email_button', [
|
|
'link' => $invoiceLink,
|
|
'field' => "view_{$entityType}",
|
|
'color' => '#0b4d78',
|
|
])
|
|
</center>
|
|
</div>
|
|
|
|
<div>
|
|
{{ trans('texts.email_signature') }} <br/>
|
|
{{ trans('texts.email_from') }}
|
|
</div>
|
|
@stop |