When using CodeIgniter Email class, I have some characters replaced by equal signs (=) .  To avoid this use below code:

$config = array (

‘mailtype’ => ‘html’,

‘charset’ => ‘utf-8’,

‘crlf’ => “rn”, //Notice double quote to enclose rn

‘priority’ => 3 );

$this->email->initialize($config);

Codeigniter email message – characters replaced with equal signs

Leave a Reply

Your email address will not be published. Required fields are marked *

73 − 70 =

This site uses Akismet to reduce spam. Learn how your comment data is processed.