configure it like this way
$config = Array(
'protocol' => 'sendmail',
'mailtype' => 'html',
'smtp_host' => '', //your SMTP host
'smtp_port' => 26,
'smtp_user' => '', //your SMTP email address
'smtp_pass' => '', //your SMTP email password
'charset' => 'iso-8859-1',
'wordwrap' => TRUE
);
$this->load->library('email', $config);
$this->email->set_newline("
");
$this->email->set_header('MIME-Version', '1.0; charset=utf-8'); //must add this line
$this->email->set_header('Content-type', 'text/html'); //must add this line
$this->email->from('', ''); //from/sender email [with name (optional)]
$this->email->to(); //to/receiver email
$this->email->subject(''); //email subject
$message = $this->load->view('...directory.../...filename...',$data,TRUE); //html template/body with dynamic data
$this->email->message($message);
$this->email->send();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…