diff --git a/framework/core/views/email/html/information.blade.php b/framework/core/views/email/html/information.blade.php
index 36e78117e6..3192e9124f 100644
--- a/framework/core/views/email/html/information.blade.php
+++ b/framework/core/views/email/html/information.blade.php
@@ -1,4 +1,4 @@
-
+
{{ $title ?? $translator->trans('core.email.informational.default_title') }}
diff --git a/framework/core/views/email/html/notification.blade.php b/framework/core/views/email/html/notification.blade.php
index dfe74d0641..45063178b7 100644
--- a/framework/core/views/email/html/notification.blade.php
+++ b/framework/core/views/email/html/notification.blade.php
@@ -1,4 +1,4 @@
-
+
{{ $title ?? $translator->trans('core.email.notification.default_title') }}
diff --git a/framework/core/views/email/plain/information.blade.php b/framework/core/views/email/plain/information.blade.php
index 66c2a9bc45..bf0f2df31c 100644
--- a/framework/core/views/email/plain/information.blade.php
+++ b/framework/core/views/email/plain/information.blade.php
@@ -1,4 +1,4 @@
-
+
{{ $title ?? $translator->trans('core.email.informational.default_title') }}
diff --git a/framework/core/views/email/plain/notification.blade.php b/framework/core/views/email/plain/notification.blade.php
index 57de6f3886..c797a53fae 100644
--- a/framework/core/views/email/plain/notification.blade.php
+++ b/framework/core/views/email/plain/notification.blade.php
@@ -1,4 +1,4 @@
-
+
{{ $title ?? $translator->trans('core.email.notification.default_title') }}