diff --git a/Classes/Runtime/Action/EmailAction.php b/Classes/Runtime/Action/EmailAction.php index c1aa4eb..eb43030 100644 --- a/Classes/Runtime/Action/EmailAction.php +++ b/Classes/Runtime/Action/EmailAction.php @@ -46,9 +46,9 @@ public function perform(): ?ActionResponse $html = $this->options['html'] ?? null; $recipientAddress = $this->options['recipientAddress'] ?? null; - $recipientName = $this->options['recipientName'] ?? null; + $recipientName = $this->options['recipientName'] ?? ''; $senderAddress = $this->options['senderAddress'] ?? null; - $senderName = $this->options['senderName'] ?? null; + $senderName = $this->options['senderName'] ?? ''; $replyToAddress = $this->options['replyToAddress'] ?? null; $carbonCopyAddress = $this->options['carbonCopyAddress'] ?? null; $blindCarbonCopyAddress = $this->options['blindCarbonCopyAddress'] ?? null;