Welcome Guest, Not a member yet? Register   Sign In
html email still sending as text/plain
#6

[eluser]LuckyFella73[/eluser]
Can you post more of your code? At least all the lines about
sending the mail. It's strange that your call to
Code:
$this->email->print_debugger()
doesn't output anything.

Maybe the order of your lines messed up by accident?
Here what I had in a project a while ago:
Code:
$this->load->library('email');

$config['wordwrap'] = FALSE;
$this->email->initialize($config);

$this->email->from('[email protected]', 'Me');
$this->email->to('[email protected]');

$this->email->subject('subject');
$this->email->message('message');

$this->email->send();
        
echo $this->email->print_debugger();
I didn' set encoding to utf-8 but the debugging worked ...


Messages In This Thread
html email still sending as text/plain - by El Forum - 09-30-2010, 05:36 AM
html email still sending as text/plain - by El Forum - 09-30-2010, 05:50 AM
html email still sending as text/plain - by El Forum - 09-30-2010, 05:51 AM
html email still sending as text/plain - by El Forum - 09-30-2010, 05:51 AM
html email still sending as text/plain - by El Forum - 09-30-2010, 05:59 AM
html email still sending as text/plain - by El Forum - 09-30-2010, 11:00 AM
html email still sending as text/plain - by El Forum - 09-30-2010, 11:47 AM
html email still sending as text/plain - by El Forum - 09-30-2010, 03:14 PM
html email still sending as text/plain - by El Forum - 10-01-2010, 03:54 AM
html email still sending as text/plain - by El Forum - 10-01-2010, 04:14 AM
html email still sending as text/plain - by El Forum - 10-01-2010, 04:27 AM
html email still sending as text/plain - by El Forum - 10-01-2010, 04:30 AM
html email still sending as text/plain - by El Forum - 10-01-2010, 04:48 AM
html email still sending as text/plain - by El Forum - 10-01-2010, 05:13 AM
html email still sending as text/plain - by El Forum - 10-01-2010, 05:41 AM
html email still sending as text/plain - by El Forum - 10-01-2010, 06:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB