利用CodeIgniter中的Email類發郵件

2022-08-28 03:24:10 字數 404 閱讀 7704

codeigniter擁有功能強大的email類。以下為利用其傳送郵件的**。

關於ci的email類的詳情請參考:

<?php if ( ! defined('basepath')) exit('no direct script access allowed');

class welcome extends ci_controller

}

在載入email類之後需要配置email引數。配置完成之後使用$this->email->initialize($config)函式來初始化引數。再設定郵件的內容,最後呼叫$this->email->send()傳送郵件。其中要注意如果新增附件時,附件的位址是相對ci根目錄下的index.php的路徑。執行結果如下: 

利用CodeIgniter中的Email類發郵件

codeigniter擁有功能強大的email類。以下為利用其傳送郵件的 關於ci的email類的詳情請參考 class welcome extends ci controller 在載入email類之後需要配置email引數。配置完成之後使用 this email initialize confi...

CodeIgniter框架 利用CI建立模型

利用ci建立模型 1 模型的存放目錄 專案目錄 models 2 建立目錄就是建立乙個類檔案 必須繼承資料核心類ci model,同時過載父類中的構造方法 class model name extends ci model 3.ci為我們提供了乙個非常強大和簡單的資料庫函式類 active reco...

CodeIgniter中Router類的兩個方法

file location system core router.php 第乙個 fetch the current method access public return string function fetch method return this method 第二個 fetch the c...