Give back the message object to those who want it
[squirrelmail.git] / functions / compose.php
index e56244b1a9c753a3cadd8617d72f0ae836ab50d7..96c110e0771a9de43912085f7ba47a2dbb2f4e02 100644 (file)
@@ -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);
 
 }