当前位置: 七九推 > 开发语言>PHP > CodeIgniter基于Email类发邮件的方法

CodeIgniter基于Email类发邮件的方法

2017年12月12日 20:04  |   | 我要评论

贴身管家龙翔,海兴新闻,怀孕23周胎儿彩超图

本文实例讲述了codeigniter基于email类发邮件的方法。分享给大家供大家参考,具体如下:

codeigniter拥有功能强大的email类。以下为利用其发送邮件的代码。

关于ci的email类的详情请参考:

文件路径为/application/controllers/welcome.php

<?php if ( ! defined('basepath')) exit('no direct script access allowed');
class welcome extends ci_controller {
  public function index()
  {
    $this->load->library('email'); //加载ci的email类
    //以下设置email参数
    $config['protocol'] = 'smtp';
    $config['smtp_host'] = 'smtp.163.com';
    $config['smtp_user'] = 'fanteathy';
    $config['smtp_pass'] = '******';
    $config['smtp_port'] = '25';
    $config['charset'] = 'utf-8';
    $config['wordwrap'] = true;
    $config['mailtype'] = 'html';
    $this->email->initialize($config);
    //以下设置email内容
    $this->email->from('fanteathy@163.com', 'fanteathy');
    $this->email->to('517081935@qq.com');
    $this->email->subject('email test');
    $this->email->message('<font color=red>testing the email class.</font>');
    $this->email->attach('application\controllers\1.jpeg'); //相对于index.php的路径
    $this->email->send();
    //echo $this->email->print_debugger(); //返回包含邮件内容的字符串,包括email头和email正文。用于调试。
  }
}

在加载email类之后需要配置email参数。配置完成之后使用

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

来初始化参数。再设置邮件的内容,最后调用

$this->email->send()

发送邮件。其中要注意如果添加附件时,附件的地址是相对ci根目录下的index.php的路径。运行结果如下:

更多关于codeigniter相关内容感兴趣的读者可查看本站专题:《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《php日期与时间用法总结》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于codeigniter框架的php程序设计有所帮助。

希望与广大搞笑网友互动?? 点此进行留言吧!

验证码:
移动技术网