diff --git a/resources/views/vendor/mail/html/message.blade.php b/resources/views/vendor/mail/html/message.blade.php
index ee8027183c..3c03ea27e5 100644
--- a/resources/views/vendor/mail/html/message.blade.php
+++ b/resources/views/vendor/mail/html/message.blade.php
@@ -2,34 +2,47 @@
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')])
-@if (isset($snipeSettings) && ($snipeSettings->show_images_in_email=='1' ) && ($snipeSettings::setupCompleted()))
-@if ($snipeSettings->brand == '3')
+{{-- Check that the $snipeSettings variable is set, images are set to be shown, and setup is complete --}}
-@if ($snipeSettings->email_logo!='')
-
-@elseif ($snipeSettings->logo!='')
-
-@endif
-
-{{ $snipeSettings->site_name }}
-
-@elseif ($snipeSettings->brand == '2')
-@if ($snipeSettings->email_logo!='')
+@if (isset($snipeSettings) && ($snipeSettings::setupCompleted()))
-
-@elseif ($snipeSettings->logo!='')
-
-@endif
+ {{-- Show images in email! --}}
+ @if (($snipeSettings->show_images_in_email=='1' ) && (($snipeSettings->brand == '3') || ($snipeSettings->brand == '2')))
+ {{-- $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 }}
+ @endif
+
+{{-- Either the $snipeSettings variable isn't set or setup is not complete --}}
@else
-{{ $snipeSettings->site_name }}
+{{ config('app.name') }}
@endif
-@else
-{{ $snipeSettings->site_name }}
-@endif
@endcomponent
@endslot