mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-02-01 04:44:18 -05:00
17 lines
418 B
PHP
17 lines
418 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ App::getLocale() }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
{{ trans('texts.email_salutation', ['name' => $userName]) }} <p/>
|
|
|
|
{{ trans("texts.notification_{$entityType}_bounced", ['contact' => $contactName, 'invoice' => $invoiceNumber]) }} <p/>
|
|
|
|
{{ $emailError }}<p/>
|
|
|
|
{{ trans('texts.email_signature') }} <br/>
|
|
{{ trans('texts.email_from') }} <p/>
|
|
|
|
</body>
|
|
</html> |