mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
26 lines
649 B
PHP
26 lines
649 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_invoice_payment_failed", ['amount' => $paymentAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }}
|
|
</div>
|
|
|
|
<div>
|
|
{{ $payment->gateway_error }}
|
|
</div>
|
|
|
|
<div>
|
|
{{ trans('texts.email_signature') }} <br/>
|
|
{{ trans('texts.email_from') }}
|
|
</div>
|
|
@stop |