mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
20 lines
561 B
PHP
20 lines
561 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ App::getLocale() }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
@if ($account->enable_email_markup)
|
|
@include('emails.partials.user_view_action')
|
|
@endif
|
|
{{ trans('texts.email_salutation', ['name' => $userName]) }} <p/>
|
|
|
|
{{ trans("texts.notification_{$entityType}_viewed", ['amount' => $invoiceAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }} <p/>
|
|
|
|
{{ trans('texts.email_signature') }} <br/>
|
|
{{ trans('texts.email_from') }} <p/>
|
|
|
|
{{ trans('texts.user_email_footer') }} <p/>
|
|
|
|
</body>
|
|
</html> |