diff --git a/typo3conf/ext/powermail/Classes/Controller/FormController.php b/typo3conf/ext/powermail/Classes/Controller/FormController.php
index 63ffa32..6bb67ca 100644
--- a/typo3conf/ext/powermail/Classes/Controller/FormController.php
+++ b/typo3conf/ext/powermail/Classes/Controller/FormController.php
@@ -343,15 +343,12 @@ class FormController extends AbstractController
 
         /** @noinspection PhpUnhandledExceptionInspection */
         if ($mail !== null && HashUtility::isHashValid($hash, $mail)) {
-            if ($mail->getHidden()) {
-                $mail->setHidden(false);
-                $this->mailRepository->update($mail);
-                $this->persistenceManager->persistAll();
-                $this->signalDispatch(__CLASS__, __FUNCTION__ . 'AfterPersist', [$mail, $hash, $this]);
-
-                return (new ForwardResponse('create'))->withArguments(['mail' => $mail, 'hash' => $hash]);
-            }
-            $labelKey = 'done';
+            $mail->setHidden(false);
+            $this->mailRepository->update($mail);
+            $this->persistenceManager->persistAll();
+            $this->signalDispatch(__CLASS__, __FUNCTION__ . 'AfterPersist', [$mail, $hash, $this]);
+            $this->forward('create', null, null, ['mail' => $mail, 'hash' => $hash]);
+                     
         }
         $this->view->assign('labelKey', $labelKey);
 
