From 7675f99fd0888cb950c879d97277d7a5131af840 Mon Sep 17 00:00:00 2001 From: Anna Larch Date: Mon, 5 Aug 2024 19:32:45 +0200 Subject: [PATCH] fixup! feat(ocs): add OCS extractor and workflow --- lib/Controller/MessageApiController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Controller/MessageApiController.php b/lib/Controller/MessageApiController.php index 6b4a9d98c1..71e6879756 100644 --- a/lib/Controller/MessageApiController.php +++ b/lib/Controller/MessageApiController.php @@ -80,8 +80,8 @@ public function __construct( * @param string $body The message body * @param bool $isHtml If the message body contains HTML * @param list $to An array of "To" recipients in the format ['label' => 'Name', 'email' => 'Email Address'] or ['email' => 'Email Address'] - * @param ?list $cc An optional array of 'CC' recipients in the format ['label' => 'Name', 'email' => 'Email Address'] or ['email' => 'Email Address'] - * @param ?list $bcc An optional array of 'BCC' recipients in the format ['label' => 'Name', 'email' => 'Email Address'] or ['email' => 'Email Address'] + * @param array|list $cc An optional array of 'CC' recipients in the format ['label' => 'Name', 'email' => 'Email Address'] or ['email' => 'Email Address'] + * @param array|list $bcc An optional array of 'BCC' recipients in the format ['label' => 'Name', 'email' => 'Email Address'] or ['email' => 'Email Address'] * @param ?string $references An optional string of an RFC2392 "message-id" to set the "Reply-To" and "References" header on sending * @return DataResponse *