I trying send email in a Codeigniter project. Earlier the domain was hosted in some other server, then the email were sending. Now I hosted my domain to AWS EC2, now the email are not sending.
Code:
$this->email->set_mailtype("html");
$this->email->from($from_email, 'Stackoverflow');
$this->email->to($email);
$this->email->subject($subject);
$this->email->message($message);
$this->email->send();
Can anyone please help me to solve this issue. Answers will be appreciated. Thank You.