diff --git a/typo3/sysext/install/Classes/Controller/EnvironmentController.php b/typo3/sysext/install/Classes/Controller/EnvironmentController.php
index a5299cf868ee8486356a320235bd3034996b6e14..c5ee4f63356221331b50af10812510f73ad1c2f7 100644
--- a/typo3/sysext/install/Classes/Controller/EnvironmentController.php
+++ b/typo3/sysext/install/Classes/Controller/EnvironmentController.php
@@ -238,7 +238,6 @@ class EnvironmentController extends AbstractController
             'mailTestToken' => $formProtection->generateToken('installTool', 'mailTest'),
             'mailTestSenderAddress' => $this->getSenderEmailAddress(),
             'isSendPossible' => $isSendPossible,
-            'queueIdentifier' => 'install',
         ]);
 
         return new JsonResponse([
diff --git a/typo3/sysext/install/Resources/Private/Templates/Environment/MailTest.html b/typo3/sysext/install/Resources/Private/Templates/Environment/MailTest.html
index 59f4b0c61455957e6c7ab5c96d4b0cd308496c07..5e7426af09b6a1abe0b874bcb9680b31b3318735 100644
--- a/typo3/sysext/install/Resources/Private/Templates/Environment/MailTest.html
+++ b/typo3/sysext/install/Resources/Private/Templates/Environment/MailTest.html
@@ -2,6 +2,7 @@
 
 <p>
     Check the basic mail functionality by entering your email address here and clicking the button.
+    You should then receive a test email from "{mailTestSenderAddress}".
 </p>
 
 <p>
@@ -17,12 +18,13 @@
         <code>$GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport_smtp_*']</code> is valid. Wrong data here results in faulty
         requests to the mail server. You can find the resulting messages in the mail server log.
     </li>
-    <li>
-        <code>$GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport']['defaultMailFromAddress']</code> must be a valid email
-        address.
-    </li>
 </ul>
 
+<p>
+    Not receiving the test email could also be a consequence of it being intercepted by a spam filter or due to the
+    sending domain's email security settings, such as SPF record, which may prevent successful delivery.
+</p>
+
 <div class="t3js-module-content" data-mail-test-token="{mailTestToken}">
     <div class="t3js-mailTest-output"></div>