I'm trying to send an email using this code:
$this->load->library('email');
$this->email->from("myemail@email.com");
$this->email->reply_to("myemail@email.com");
$this->email->to("myemail@email.com");
$this->email->subject("Test mail");
$this->email->message("Email body");
$this->email->set_alt_message("Email body txt");
$this->email->send();
I just hosted my site in InfinityFree and when I tried sending emails, It's not sending anymore. Can please someone help. My code was working before a hosted it in InfinityFree