Indicate reply/fwd data has been added to outgoing mimp message
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 7 Jul 2009 22:31:16 +0000 (16:31 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 8 Jul 2009 16:26:41 +0000 (10:26 -0600)
imp/compose-mimp.php

index 6b0d6ca..6faee1e 100644 (file)
@@ -116,6 +116,8 @@ case 'rl':
     $actions = array('r' => 'reply', 'ra' => 'reply_all', 'rl' => 'reply_list');
     $reply_msg = $imp_compose->replyMessage($actions[$actionID], $imp_contents, Horde_Util::getFormData('to'));
     $header = $reply_msg['headers'];
+
+    $notification->push(_("Reply text will be automatically appended to your outgoing message."), 'horde.message');
     break;
 
 // 'f' = forward
@@ -125,6 +127,8 @@ case 'f':
     }
     $fwd_msg = $imp_compose->forwardMessage($imp_contents);
     $header = $fwd_msg['headers'];
+
+    $notification->push(_("Forwarded message will be automatically added to your outgoing message."), 'horde.message');
     break;
 
 case _("Redirect"):