From 4f2b795cd2fbe61bb84e3d307d330ec72a36c5ff Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 12 Jul 2018 12:31:33 +0200 Subject: [PATCH] Fix doc for 3rd argument of rcube::deliver_message() (#6353) --- program/lib/Roundcube/rcube.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/program/lib/Roundcube/rcube.php b/program/lib/Roundcube/rcube.php index 011e4cbe3..1559f04ac 100644 --- a/program/lib/Roundcube/rcube.php +++ b/program/lib/Roundcube/rcube.php @@ -1590,14 +1590,15 @@ class rcube /** * Send the given message using the configured method. * - * @param object $message Reference to Mail_MIME object - * @param string $from Sender address string - * @param array $mailto Array of recipient address strings - * @param array $error SMTP error array (reference) - * @param string $body_file Location of file with saved message body (reference), - * used when delay_file_io is enabled - * @param array $options SMTP options (e.g. DSN request) - * @param bool $disconnect Close SMTP connection ASAP + * @param object $message Reference to Mail_MIME object + * @param string $from Sender address string + * @param array|string $mailto Either a comma-separated list of recipients (RFC822 compliant), + * or an array of recipients, each RFC822 valid + * @param array $error SMTP error array (reference) + * @param string $body_file Location of file with saved message body (reference), + * used when delay_file_io is enabled + * @param array $options SMTP options (e.g. DSN request) + * @param bool $disconnect Close SMTP connection ASAP * * @return boolean Send status. */