本文實例講述了CI框架簡單郵件發(fā)送類。分享給大家供大家參考,具體如下:
ci框架絕對是php初學(xué)中想要的東西,它能極大的縮短你的代碼量!
下面看看我的發(fā)送郵件的簡單演示:
function email()
{
$this->load->library('email');
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'smtp.163.com';
$config['smtp_user'] = 'jb51@163.com';//這里寫上你的163郵箱賬戶
$config['smtp_pass'] = 'jb51;';//這里寫上你的163郵箱密碼
$config['mailtype'] = 'html';
$config['validate'] = true;
$config['priority'] = 1;
$config['crlf'] = "\r\n";
$config['smtp_port'] = 25;
$config['charset'] = 'utf-8';
$config['wordwrap'] = TRUE;
$this->email->initialize($config);
$this->email->from('jb51@163.com', '腳本之家');//發(fā)件人
$this->email->to('123456789@qq.com');
$this->email->message('哈哈,測試郵件發(fā)送');
$this->email->send();
echo $this->email->print_debugger();
}
如果您不想使用使用上述方法設(shè)定參數(shù),您可以把它們放入一個配置文件。創(chuàng)建一個新文件稱為email.php,添加$config數(shù)組在該文件中。然后將該文件保存為config/email.php 它將自動的被使用。如果您保存了一個參數(shù)配置文件,就不需要使用$this->email->initialize()函數(shù)來初始化參數(shù)了
希望本文所述對大家基于CodeIgniter框架的PHP程序設(shè)計有所幫助。