使用库和帮助程序

该示例仅用于说明使用库和帮助程序而不是有效代码。不要将其复制/粘贴到你的项目中。

HELPER 助手/ sendEmail_helper.php

if ( ! function_exists('sendEmail'))
{
    function sendEmail($email, $subject, $message, $lang, $cc = null, $file = null) {

        $CI =& get_instance();    
        
        $mail_config['protocol'] = 'smtp';
        $mail_config['smtp_host'] = 'host';
        $mail_config['smtp_user'] = 'user';
        $mail_config['smtp_pass'] = 'pass';
        $mail_config['smtp_port'] = '587';
        $mail_config['smtp_timeout'] = 5;
        $mail_config['charset'] = 'utf-8';
        $mail_config['mailtype'] = 'html';
        $mail_config['wrapchars'] = 76;
        $mail_config['wordwrap'] = TRUE;
            
        $CI->email->initialize($mail_config);
        $CI->email->set_newLine('\r\n');
        
        if ($lang == "en"){    
            $CI->email->from('support.en@domain.com', 'English Support');
        }else{
            $CI->email->from('support.fr@domain.com', 'Support en francais');
        }        
        $CI->email->to($email);
        if ($cc != null){
            $CI->email->cc($cc); 
        }    
        $CI->email->subject($subject);
        $CI->email->message($message);    
        if ($file != null){
            $CI->email->attach($file);    
        }    
        //$CI->email->print_debugger();
        return $CI->email->send();            
    }
}

LIBRARY libraries / Alerter.php

class Alerter {

    public function alert_user($user_email, $subject, $message, $lang) {
        //load helper
        $this->load->helper('sendEmail');
        //using helper
        sendEmail($user_email, $subject, $message, $lang);
    }
    
    public function alert_admin($admin_email, $subject, $message, $lang, $reason){
        //load helper
        $this->load->helper('sendEmail');
        .....
        //using helper
        sendEmail($admin_email, $subject, $message, $lang);
        .....
    }
}

CONTROLLER

class Alerts extends CI_Controller {
    function __construct() {
        parent::__construct();
    }  

    public function send_alert($userid) {
        
        //load library and model
        $this->load->library('Alerter');
        $this->load->model('alerter_model');
        
        //get user
        $user = $this->alerter_model->get_one_by_id($userid);
        
        //using library
        $this->Alerter->alert_user($user->email, $subject, $message, $lang);

    } 
}