Welcome Guest, Not a member yet? Register   Sign In
email subject in utf 8 is not work!
#3

[eluser]Jazmo[/eluser]
Put
Code:
class MY_Email extends CI_Email
{
    /**
     * Set Email Subject
     *
     * @access    public
     * @param    string
     * @return    void
     */
    function subject($subject)
    {
        $subject = '=?'. $this->charset .'?B?'. base64_encode($subject) .'?=';
        $this->_set_header('Subject', $subject);
    }
}
this to your application / libraries / MY_Email.php


Messages In This Thread
email subject in utf 8 is not work! - by El Forum - 07-14-2010, 10:53 PM
email subject in utf 8 is not work! - by El Forum - 08-10-2010, 06:07 AM
email subject in utf 8 is not work! - by El Forum - 08-10-2010, 06:36 AM
email subject in utf 8 is not work! - by El Forum - 02-22-2012, 09:43 AM
email subject in utf 8 is not work! - by El Forum - 10-22-2012, 09:31 AM
email subject in utf 8 is not work! - by El Forum - 10-22-2012, 09:47 AM
email subject in utf 8 is not work! - by El Forum - 10-25-2012, 01:20 AM



Theme © iAndrew 2016 - Forum software by © MyBB