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 section "Troubleshooting" of the menu, and live support is available in the TYPO3 Slack channel #typo3-cms. (See How to get your TYPO3 Slack account.)

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:

Wrong yaml
finishers:
-
  options:
    recipients:
      ' info@example.org': 'Name'
Correct yaml
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:

Old yaml, no longer working in v11
finishers:
-
  options:
    recipientAddress: email@example.com
    recipientName: '{text-1}'
New yaml
finishers:
-
  options:
    recipients:
      email@example.com: '{text-1}'