I am using niceeditor like ckeditor and m upload image as a drag and drop but that image when i send email that time not go through email.Can any one help me.my code is bellow
$this->load->library('email');
$this->email->set_newline("\r\n");
$config['protocol'] = 'mail';
$config['wordwrap'] = FALSE;
$config['mailtype'] = 'html';
$config['charset'] = 'utf-8';
$config['crlf'] = "\r\n";
$config['newline'] = "\r\n";
$this->email->initialize($config);
$this->email->from('email', "Day Lewis – conference");
$this->email->reply_to('daylewis@principalge.com', $this->system->site_name);
$this->email->to($guest_email['guest_email']);
$this->email->subject($selectedemaildata[0]['emailheader']);
$this->email->message($selectedemaildata[0]['email']); **// contain image data**
$this->email->send();