mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 17:24:36 -04:00
Standardized headers across html emails
This commit is contained in:
parent
7db4fd8cd0
commit
abe3eb6367
@ -1,4 +1,8 @@
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
@if (false && !$invitationMessage)
|
||||
@include('emails.confirm_action', ['user' => $user])
|
||||
|
@ -1,4 +1,8 @@
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
@if (false)
|
||||
@include('emails.view_action', ['link' => $link, 'entityType' => $entityType])
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{App::getLocale()}}">
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
|
@ -1,18 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
{{ $client }},<p/>
|
||||
{{ $client }},<p/>
|
||||
|
||||
{{ trans('texts.payment_message', ['amount' => $amount]) }}<p/>
|
||||
{{ trans('texts.payment_message', ['amount' => $amount]) }}<p/>
|
||||
|
||||
{{ $license }}<p/>
|
||||
{{ $license }}<p/>
|
||||
|
||||
{{ trans('texts.email_signature') }}<br/>
|
||||
{{ $account }}
|
||||
|
||||
</body>
|
||||
{{ trans('texts.email_signature') }}<br/>
|
||||
{{ $account }}
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>{!! $body !!}</body>
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>{!! $body !!}</body>
|
||||
</html>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
|
Loading…
x
Reference in New Issue
Block a user