网站地图    收藏   

主页 > 后端 > codeigniter >

ci框架邮件发送类库

来源:未知    时间:2014-10-20 11:33 作者:xbdadmin 阅读:

[导读] ci框架绝对是php初学中想要的东西,它能极大的缩短你的代码量! 下面看看我的发送邮件的简单演示: function email () { $this - load - library ( email ); $config [ protocol ] = smtp ; $config [ smtp_host...

ci框架绝对是php初学中想要的东西,它能极大的缩短你的代码量!

下面看看我的发送邮件的简单演示:



  1. function email()
  2. {
  3. $this->load->library('email');
  4. $config['protocol'] = 'smtp';
  5. $config['smtp_host'] = 'smtp.163.com';
  6. $config['smtp_user'] = 'phpddt1990@163.com';//这里写上你的163邮箱账户
  7. $config['smtp_pass'] = 'phpddt;';//这里写上你的163邮箱密码
  8. $config['mailtype'] = 'html';
  9. $config['validate'] = true;
  10. $config['priority'] = 1;
  11. $config['crlf'] = "\r\n";
  12. $config['smtp_port'] = 25;
  13. $config['charset'] = 'utf-8';
  14. $config['wordwrap'] = TRUE;
  15.  
  16. $this->email->initialize($config);
  17.  
  18.  
  19. $this->email->from('phpddt1990@163.com', '合肥学院青年志愿者联合会');//发件人
  20. $this->email->to('987044391@qq.com');
  21.  
  22. $this->email->message('哈哈,测试邮件发送');
  23. $this->email->send();
  24. echo $this->email->print_debugger();
  25.  
  26. }

 

如果您不想使用使用上述方法设定参数,您可以把它们放入一个配置文件。创建一个新文件称为email.php,添加$config数组在该文件中。然后将该文件保存为config/email.php 它将自动的被使用。如果您保存了一个参数配置文件,就不需要使用$this->email->initialize()函数来初始化参数了

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论