From 59927db317c6b031765a88ca3508edeb7ccbcc6e Mon Sep 17 00:00:00 2001 From: pdontthink Date: Wed, 12 Sep 2018 17:27:58 +0000 Subject: [PATCH] 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 --- functions/compose.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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); } -- 2.25.1