Welcome Guest, Not a member yet? Register   Sign In
HTML email strips CSS
#1

[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.
#2

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

[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.




Theme © iAndrew 2016 - Forum software by © MyBB