知识屋:更实用的电脑技术知识网站
所在位置:首页 > 编程技术 > PHP编程

CodeIgniter 发送邮件(smtp)

发布时间:2014-09-05 10:44:40作者:知识屋

              $this->load->library('email');


$config['protocol'] = 'smtp';
//发送给QQ用户,要显示中文用 'iso-8859-1'
$config['charset'] = 'iso-8859-1';
//发送给163用户,要显示中文用'gb2312'
//$config['charset'] = 'gb2312';
$config['mailpath'] = 'news/index';
$config['smtp_host'] = 'smtp.163.com';
$config['smtp_user'] = 'example0624@163.com';
$config['smtp_pass'] = 'password';

$this->email->initialize($config);

$this->email->from('example0624@163.com', 'example');
$this->email->to('tosombody@qq.com');
//设置抄送 www.zhishiwu.com
//$this->email->cc();
//设置暗送
//$this->email->bcc();
$this->email->subject("The test of CodeIgniter's sending mail");
$this->email->message('你好,这是我的测试程序。通过CodeIgniter成功发送的邮件,请勿回复。');
//路径需要使用绝对路径
$this->email->attach('D:/QCallServer/htdocs/CI/public/images/google.jpg');
if ($this->email->send()) {

echo 'success...';
} else {
echo 'failed...';
}

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜