TYPO3 Exception 1327060200

[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.
Copied!

Solution

There was a leading white space in the recipient's email address:

Wrong yaml
finishers:
-
  options:
    recipients:
      ' info@example.org': 'Name'
      
      
Copied!
Correct yaml
finishers:
-
  options:
    recipients:
      'info@example.org': 'Name'
Copied!

[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}'
      
      
Copied!
New yaml
finishers:
-
  options:
    recipients:
      email@example.com: '{text-1}'
Copied!