From: pdontthink Date: Wed, 12 Sep 2018 17:27:58 +0000 (+0000) Subject: Give back the message object to those who want it X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=59927db317c6b031765a88ca3508edeb7ccbcc6e;p=squirrelmail.git Give back the message object to those who want it git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14775 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/compose.php b/functions/compose.php index e56244b1..96c110e0 100644 --- a/functions/compose.php +++ b/functions/compose.php @@ -83,11 +83,12 @@ function sq_get_attach_tempfile() * empty, all other parameters are ignored. * (OPTIONAL: default is empty) * - * @return array A two-element array, the first element being a + * @return array A three-element array, the first element being a * boolean value indicating if the message was successfully - * sent or not, and the second element being the message's + * sent or not, the second element being the message's * assigned Message-ID, if available (only available as of - * SquirrelMail 1.4.14 and 1.5.2) + * SquirrelMail 1.4.14 and 1.5.2), and the third element + * being the message object itself. * */ function sq_send_mail($to, $subject, $body, $from, $cc='', $bcc='', $message='') @@ -167,7 +168,7 @@ function sq_send_mail($to, $subject, $body, $from, $cc='', $bcc='', $message='') $success = $deliver->finalizeStream($stream); } - return array($success, $message_id); + return array($success, $message_id, $message); }