Error in mail content using SMTP in codeigniter Actually, my mail is sent with HTML tags and it is showing the HTML tags which is not correct.
HTML
Try to manually set the content type header doing this:
$this->email->set_header('Content-Type', 'text/html');
That solve the issue for me.