[eluser]rt30000[/eluser]
The html file (a php view containing the html email) is perfect. At this point I'm not even sending data into the view, just simply adding the static view as the mail message. The above code is exactly how it exists in the view, and the second is exactly how it comes through in the html email.
This is adding the view:
Code:
$msg = $this->load->view('emails/email-story-submission_view', '', true);
$this->email->message($msg);
When the view is added to the page (for test/preview) it display perfect. When it comes through the mail is when the code is funky.
Here is my config setting if it helps...
Code:
$config['protocol'] = 'mail';
$config['wordwrap'] = FALSE;
$config['mailtype'] = 'html';