2015-12-17 19:03:32 +01:00
|
|
|
@extends('emails.master_user')
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-12-17 19:03:32 +01:00
|
|
|
@section('markup')
|
2017-01-12 14:12:02 +01:00
|
|
|
@if ($account->emailMarkupEnabled())
|
2015-12-17 19:03:32 +01:00
|
|
|
@include('emails.partials.user_view_action')
|
|
|
|
@endif
|
|
|
|
@stop
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-12-17 19:03:32 +01:00
|
|
|
@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
|