I have tried and developed an application with mail sending functionality in CodeIgniter. Early mail worked, but mail is not sending. There are no errors reported. It says Mail Sending Successfully, but I haven't received mail.
Controller Code:
public function mail() {
$from_email = "tamilshanmugamit460@gmail.com";
//Load email library
$this->load->library('email');
$this->email->from($from_email, 'Your Name');
$this->email->to($from_email);
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
//Send mail
if($this->email->send())
echo "Email sent successfully.";
else
echo "Error in sending Email.";
}