codeigniter localhost email not sending
I have some problem and I don't understand. This is my code $this->load->library('email'); $config['protocol'] = 'sendmail'; $config['mailpath'] = '/usr/sbin/sendmail'; $config['charset'] = 'iso-8859-1'; $config['wordwrap'] = TRUE; $this->email->initialize($config); $this->email->from('rudzstyle@yahoo.co.id', 'Your Name'); $this->email->to('rudzstyle@gmail.com'); $message = $data->nama_depan.'<br>'.$this->input->post('snk'); $this->email->subject($message); $this->email->message('Testing the email class.'); $this->email->send(); echo $this->email->print_debugger(); that 2 email are active