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("[email protected]", "Name");
$this->email->to('[email protected]');
$this->email->cc('[email protected]');
$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