Deprecation: #80420 - EmailFinisher single address options
See forge#80420
Description
The 
        Email of EXT:form has options to set multiple recipients for To, CC and BCC.
For consistency reasons and to limit the number of choices, resulting in easier configuration, the single value configuration options
have will be removed in favour for their respective multi value variants.
For this reason, the following options have been marked as deprecated and will be removed in TYPO3 11.0:
- recipient- Address 
- recipient- Name 
- reply- To - Address 
- carbon- Copy - Address 
- blind- Carbon - Copy - Address 
If any of these options are used, their values will be automatically migrated to their replacements.
Opening and saving a form with the form editor once also performs this migration and makes it permanent.
Impact
Any of these options will no longer work in TYPO3 11.0.
Affected Installations
All installations which use EXT:form and its 
        Email.
Migration
All single value options must be migrated to their list value successors.
Multiple Recipients
Change 
        recipient and 
        recipient to 
        recipients.
Before:
finishers:
  -
    identifier: EmailToReceiver
    options:
      recipientAddress: to@example.org
      recipientName: 'To Example'After:
finishers:
  -
    identifier: EmailToReceiver
    options:
      recipients:
        to@example.org: 'To Example'Multiple Reply-To Recipients
Change 
        reply to 
        reply. Additionally this allows for setting the name of a Reply-To recipient.
Before:
finishers:
  -
    identifier: EmailToReceiver
    options:
      replyToAddress: rt@example.orgAfter:
finishers:
  -
    identifier: EmailToReceiver
    options:
      replyToRecipients:
        rt@example.org@example.org: 'Reply-To Example'Multiple Carbon Copy (CC) Recipients
Change 
        carbon to 
        carbon. Additionally this allows for setting the name of a CC recipient.
Before:
finishers:
  -
    identifier: EmailToReceiver
    options:
      carbonCopyAddress: cc@example.orgAfter:
finishers:
  -
    identifier: EmailToReceiver
    options:
      carbonCopyRecipients:
        cc@example.org: 'CC Example'Multiple Blind Carbon Copy (BCC) Recipients
Change 
        blind to 
        blind. Additionally this allows for setting the name of a BCC recipient.
Before:
finishers:
  -
    identifier: EmailToReceiver
    options:
      blindCarbonCopyAddress: bcc@example.orgAfter:
finishers:
  -
    identifier: EmailToReceiver
    options:
      blindCarbonCopyRecipients:
        bcc@example.org: 'BCC Example'