CodeIgniter Forums
HTML email - Do you see the problem? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: HTML email - Do you see the problem? (/showthread.php?tid=66262)

Pages: 1 2


RE: HTML email - Do you see the problem? - JanFromHamburg - 09-30-2016

Thanks, man! 
I was not using a gmail-account. So I tryed out with gmail and it was the same.
The result is the same with a charset of "utf-8" as with "ISO-8859-1"

And debugger does not give me anything.

Code:
$body   =   $this->load->view('report/email.php', $data, true);
$this->email->message($body);
$this->email->send(FALSE);
echo $this->email->print_debugger();
EXIT;