I am beginner with codeiginter and I am not understanding how to send email. Please anyone can help? Thanks in advance.
$config = Array(
'mailtype' => 'html',
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->from('aaa@gmail.com', 'aaa');
$this->email->to('bbb@gmail.com');
$this->email->subject('This is an email test');
$this->email->message('It is working. Great!');
$result = $this->email->send();
echo $this->email->print_debugger();