Example #1
0
 public override bool ReplyMessage(IResource mail, string EntryID, string StoreID)
 {
     using (MailAction action = new MailAction(EntryID, StoreID))
     {
         action.ReplyMessage(mail);
     }
     return(true);
 }
Example #2
0
 public override bool ForwardMessage(string EntryID, string StoreID)
 {
     using (MailAction action = new MailAction(EntryID, StoreID))
     {
         action.ForwardMessage( );
     }
     return(true);
 }