TYPO3 Exception 1327060200
Note
Below, the TYPO3 community may have provided additional information or solutions for this exception. However, these may or may not apply to your particular case. If you can provide more information, you should come back here and add your experience and solution steps to this issue once you have resolved it.
General TYPO3 troubleshooting tips can be found in the Troubleshooting section in the menu. You can also ask questions and receive support in the TYPO3 Questions category on talk.typo3.org.
To add your experience, click "Edit on GitHub" above and follow the "Edit on GitHub" workflow. Also check out our tip on Coding Style and reST.
[11.5.12] - [02.07.2022]
Situation
Error on sending the form:
(1/1) #1327060200 TYPO3\CMS\Form\Domain\Finishers\Exception\FinisherException
The option "recipients" must be set for the EmailFinisher.
Solution
There was a leading white space in the recipient's email address:
finishers:
-
options:
recipients:
' info@example.org': 'Name'
finishers:
-
options:
recipients:
'info@example.org': 'Name'
[v11.5.12] - [08-07-2022]
Solution 2
Older versions of EXT:form used 'recipientAddress' and 'recipientName', they are now replaced by 'recipients'. Either simply open and directly save the form in the Form backend module, the backend module will automatically rewrite the old options to the new one, or make the adjustments manually:
finishers:
-
options:
recipientAddress: email@example.com
recipientName: '{text-1}'
finishers:
-
options:
recipients:
email@example.com: '{text-1}'