diff --git a/resources/views/vendor/mail/html/message.blade.php b/resources/views/vendor/mail/html/message.blade.php index dc9c4ce3b2..81fa4a3c2a 100644 --- a/resources/views/vendor/mail/html/message.blade.php +++ b/resources/views/vendor/mail/html/message.blade.php @@ -14,40 +14,28 @@ @endif {{-- Show images in email! --}} - @if (($snipeSettings->show_images_in_email=='1' ) && (($snipeSettings->brand == '3') || ($snipeSettings->brand == '2'))) + @if (($snipeSettings->show_images_in_email=='1') && ($snipeSettings->email_logo!='')) {{-- $snipeSettings->brand = 1 = Text --}} {{-- $snipeSettings->brand = 2 = Logo --}} {{-- $snipeSettings->brand = 3 = Logo + Text --}} @if ($snipeSettings->brand == '3') - @if ($snipeSettings->email_logo!='') - @elseif ($snipeSettings->logo!='') - - @endif -

{{ $snipeSettings->site_name }}

+ {{-- else if branding type is just logo --}} @elseif ($snipeSettings->brand == '2') - @if ($snipeSettings->email_logo!='') - - - @elseif ($snipeSettings->logo!='') - - @endif + @endif + @else - {{ $snipeSettings->site_name }} + {{ $snipeSettings->site_name ?? config('app.name') }} @endif -{{-- Either the $snipeSettings variable isn't set or setup is not complete --}} -@else -{{ config('app.name') }} @endif - @endcomponent @endslot