/**
  *发送短消息
  *@date 2010-8-2
  *@time 下午03:12:48
  */
 function post_pm()
 {
     //发送短消息
     $reid = input::getVar($_REQUEST['reid']);
     if ($reid) {
         $dao = D("Pm");
         $info = $dao->where(array('id' => $reid))->find();
         $this->assign('info', $info);
     }
     $page = array();
     $page['title'] = 'My Message -  My Control Panel -  BeingfunChina';
     $page['keywords'] = 'My Message';
     $page['description'] = 'My Message';
     $this->assign('page', $page);
     $this->assign('content', 'Cp:post_pm');
     $this->display("Cp:layout");
 }