From 5618924b145306eb730041f2022fadcad4715acd Mon Sep 17 00:00:00 2001 From: stekkel Date: Tue, 10 Jun 2003 13:36:07 +0000 Subject: [PATCH] move the hook before send to a more efficient location git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4992 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/compose.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/compose.php b/src/compose.php index ac9ee3fb..ca4ee234 100644 --- a/src/compose.php +++ b/src/compose.php @@ -369,7 +369,7 @@ if ($send) { } $body = $newBody; - do_hook('compose_send'); + $composeMessage=$compose_messages[$session]; $Result = deliverMessage($composeMessage); @@ -1431,6 +1431,10 @@ function deliverMessage($composeMessage, $draft=false) { $rfc822_header->content_type = $content_type; $composeMessage->rfc822_header = $rfc822_header; + + /* Here you can modify the message structure just before we hand + it over to deliver */ + do_hook('compose_send'); if (!$useSendmail && !$draft) { require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php'); -- 2.25.1