I amusing the code below to send an email using codeigniter but I keep getting the error
Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.
$this->email->from("kariuki.john@gmail.com", "Name");
$this->email->to('johnkariukin@gmail.com');
$this->email->cc('contact@johnkariuki.co.ke');
$this->email->subject("New Email from on johnkariuki.co.ke");
$this->email->message("abdfdfj\nfdgdfgdf");
if($this->email->send())
{
echo "works";
} else {
$this->email->print_debugger();
}
What could be the issue? I cannot find a working solution online. What could be the issue? I cannot find a working solution online. I have loaded the email library in the constructor