CodeIgniter Forums
HTML email strips CSS - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: HTML email strips CSS (/showthread.php?tid=52633)



HTML email strips CSS - El Forum - 06-19-2012

[eluser]goodbytes[/eluser]
I'm trying to send an html email with code igniter's email class and have downloaded a simple mailchimp template for this. Sending it from mailchimp arrives just fine in gmail, but when sending the same from code igniter, it strips all the CSS.

I'm sending as follows:
Code:
$config['charset'] = 'utf-8';
     $config['mailtype'] = "html";
     $config['send_multipart'] = false;
     $this->load->library('email');
     $this->email->initialize($config);

$message = $this->load->view("user/email", $emaildata, true);
$this->email->subject($subject);
     $this->email->message($message);
     $this->email->to("");
     $this->email->bcc($emails_to);
     $this->email->send();

any ideas are welcome! Thanks for helping out!

The email arrives, but with CSS being gone completely in gmail.
PS: loading the same "user/email" view in the browser works perfect.


HTML email strips CSS - El Forum - 06-19-2012

[eluser]goodbytes[/eluser]
sorry, thought I figured it out, but didn't


HTML email strips CSS - El Forum - 06-19-2012

[eluser]CroNiX[/eluser]
It's best to use inline-css for html-based email. Most mail readers won't include external stylesheets, etc. Has nothing to do with CI. I'm betting mailchimp used inline css as most of them do.