load->library('email'); $ci->load->library('MailLib'); $sanchoHeader_img = 'skin/images/sancho/'. $headerImg; $sanchoFooter_img = 'skin/images/sancho/'. $footerImg; if ($from == '') { $from = 'sancho@'.DOMAIN; } // Embed sancho header and footer image // reset important to ensure embedding of images when called in a loop $ci->email->clear(true); // clear vars and attachments $ci->email->attach($sanchoHeader_img); $ci->email->attach($sanchoFooter_img); $cid_header = $ci->email->attachment_cid($sanchoHeader_img); // sets unique content id for embedding $cid_footer = $ci->email->attachment_cid($sanchoFooter_img); // sets unique content id for embedding // Set specific mail content into specific content template $content = _parseMailContent($vorlage_kurzbz, $vorlage_data); // overall main content data array $layout = array( 'CID_header' => $cid_header, 'CID_footer' => $cid_footer, 'content' => $content ); // Set overall main content into the sancho mail template $body = _parseMailContent('Sancho_Mail_Template', $layout); // Send mail return $ci->maillib->send($from, $to, $subject, $body, $alias = '', $cc, $bcc, $altMessage = '', $bulk = true, $autogenerated = true); } /** * Replace variables in the mail content template with specific mail content data. * @param string $vorlage_kurzbz Name of the template for specific mail content. * @param array $vorlage_data Associative array with specific mail content varibales * to be replaced in the content template. * @return string */ function _parseMailContent($vorlage_kurzbz, $vorlage_data) { $ci =& get_instance(); $ci->load->library('VorlageLib'); $result = $ci->vorlagelib->loadVorlagetext($vorlage_kurzbz); if (isSuccess($result)) { // If the text and the subject of the template are not empty if (is_array($result->retval) && count($result->retval) > 0 && !isEmptyString($result->retval[0]->text)) { // Parses template text return parseText($result->retval[0]->text, $vorlage_data); } } }