/**
  * Set up a new campaign and send a message.
  * 
  * @access public
  */
 public function inboxAction()
 {
     $user_id = $this->user->getId();
     ////        $folderList = $this->user->getFolders();
     //        echo '<pre>'; print_r($folderList);
     //        exit;
     $inboxObj = new Application_Model_Message($this->user);
     $messageObject = $inboxObj->getinboxmessage($user_id);
     $this->view->inbox_messages = $messageObject;
 }