mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
20 lines
479 B
PHP
20 lines
479 B
PHP
@extends('emails.master_user')
|
|
|
|
@section('body')
|
|
<div>
|
|
{{ trans('texts.email_salutation', ['name' => $userName]) }}
|
|
</div>
|
|
|
|
<div>
|
|
{{ trans("texts.notification_{$entityType}_bounced", ['contact' => $contactName, 'invoice' => $invoiceNumber]) }}
|
|
</div>
|
|
|
|
<div>
|
|
{{ $emailError }}
|
|
</div>
|
|
|
|
<div>
|
|
{{ trans('texts.email_signature') }} <br/>
|
|
{{ trans('texts.email_from') }}
|
|
</div>
|
|
@stop |