Actions
Bug #88702
closedEmailFinisher - Recipients - Cannot unpack array with string keys
Start date:
2019-07-08
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
7.2
Tags:
Complexity:
medium
Is Regression:
Sprint Focus:
Description
The EmailFinisher throws an exception with the message "*Cannot unpack array with string keys*" if the recipient list has a "Human-readable name of the sender" and an "Email address of the sender (Default: "{email}")".
Affected class: \TYPO3\CMS\Form\Domain\Finishers\EmailFinisher
Method: executeInternal
Input-Variable $recipients:
$recipients = [
'foo@bar.com => 'Foo Bar'
];
...
$mail->from(new NamedAddress($senderAddress, $senderName))
->to(...$recipients)
->subject($subject);
...
Files
Actions