在ci框架中如何发送email?

[python]

public function sendemail()  
{     
    $config = array('protocol'=>'smtp',  
        'smtp_host' => 'smtp.163.com',  
        'smtp_user' => '邮箱的用户名',  
        'smtp_pass' => '自身邮箱密码',  
        'smtp_port' => '25',  
        '_smtp_auth' => TRUE,  
        'wordwrap' => TRUE,  
        'charset' => 'iso-8859-1'  
  
    );  
    $this->load->library('email', $config);  
    $this->email->from('用户邮箱@163.com', '用户');  
    $this->email->to('发送到哪个邮箱@163.com');  
    $this->email->subject('文件标题');  
    $this->email->message('文件内容');  
    $this->email->send();  
}