codeigniter attach html to email
If you have this kind of error, just check the way you'r calling the email library. Be sure to add this line. $config['mailtype...

Be sure to add this line.
$config['mailtype'] = 'html';
$this->email->initialize($config);
And it might save you from lots of trouble.
Post a Comment