Замените этот код в вашем файле
\ system \ library Email.php file
public function subject($subject)
{
$subject = $this->_prep_q_encoding($subject);
$this->set_header('Subject', $subject);
return $this;
}
К
public function subject($subject)
{
$subject = '=?UTF-8?B?'.base64_encode($subject).'?=';
$this->_set_header('Subject', $subject);
return $this;
}
и настройте конфигурацию электронной почты в вашей конфигурации электронной почты
$config = array(
'protocol' => 'smtp',
'charset' => 'utf-8',
'newline' => "\r\n",
'crlf' => "\n",
'mailtype' => "html"
);