diff --git a/resources/views/email/admin/generic.blade.php b/resources/views/email/admin/generic.blade.php index f8bf3d4c76..ee0038c48d 100644 --- a/resources/views/email/admin/generic.blade.php +++ b/resources/views/email/admin/generic.blade.php @@ -8,7 +8,7 @@

{{ $greeting }}

@endif -

{{ $title }}

+

{{ $title }}

{{ $message }}

diff --git a/resources/views/email/template/master.blade.php b/resources/views/email/template/master.blade.php index 380986ca52..d07a975a0b 100644 --- a/resources/views/email/template/master.blade.php +++ b/resources/views/email/template/master.blade.php @@ -19,7 +19,7 @@ } .primary-color-bg { - background-color: var(--primary-color); + background-color: {{ isset($settings) ? $settings->primary_color : '#4caf50' }}; } #email-content h1, h2, h3, h4 { @@ -33,11 +33,11 @@ display: block; color: {{ $design == 'light' ? 'black' : 'white' }}; padding-bottom: 20px; - padding-top: 20px; + /*padding-top: 20px;*/ } .button { - background-color: var(--primary-color); + background-color: {{ isset($settings) ? $settings->primary_color : '#4caf50' }}; color: white; padding: 10px 16px; text-decoration: none;