Standardized headers across html emails

This commit is contained in:
Hillel Coren 2015-07-29 10:52:10 +03:00
parent 7db4fd8cd0
commit abe3eb6367
8 changed files with 31 additions and 23 deletions

View File

@ -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])

View File

@ -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])

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="{{ App::getLocale() }}">
<head>
<meta charset="utf-8">
</head>

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="{{ App::getLocale() }}">
<head>
<meta charset="utf-8">
</head>

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="{{App::getLocale()}}">
<html lang="{{ App::getLocale() }}">
<head>
<meta charset="utf-8">
</head>

View File

@ -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>

View File

@ -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>

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="{{ App::getLocale() }}">
<head>
<meta charset="utf-8">
</head>