Example #1
0
 public function action_outbox()
 {
     $page = $this->get_query('page', 1);
     $mail_list = Model_Mail::find_user_outbox($this->current_user->user_id, $page, $this->per_page);
     $total = Model_Mail::count_user_outbox($this->current_user->user_id);
     $this->template_data['title'] = __('mail.outbox');
     $this->template_data['base_url'] = '/mail/outbox';
     $this->template_data['total'] = ceil($total / $this->per_page);
     $this->action_list($mail_list);
 }