public function index() {
$this->load->library ( 'email' );
$this->email->from ( '****************@163.com', 'Your Name' );
$this->email->to ( '****************@qq.com' );
$this->email->subject ( 'Email Test' );
$this->email->message ( 'Testing the email class.' );
$this->email->send ();
echo $this->email->print_debugger ();
}