Мой код выглядит следующим образом:
Код: Выделить всё
public function send_email($sendTo, $fromName, $fromEmail, $data, $subject) {
$this->email->set_mailtype('html');
$this->email->from($fromEmail, $fromName);
$this->email->to($sendTo);
$this->email->subject($subject);
$this->email->attach(FCPATH . "images/logo.png", "inline");
$content = array(
'HTMLcontent' => $data
);
$body = $this->load->view('email_template.php', $content, TRUE);
$this->email->message($body);
if ($this->email->send()) {
return TRUE;
} else {
return FALSE;
}
}
email_template.php
Код: Выделить всё
[img]cid:logo.png[/img]

Подробнее здесь: https://stackoverflow.com/questions/407 ... ot-working
Мобильная версия