微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

CodeIgniter基于Email类发邮件的方法

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

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

关于CI的Email类的详情请参考:

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

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('Testing the email class.'); $this->email->attach('application\controllers\1.jpeg'); //相对于index.php的路径 $this->email->send(); //echo $this->email->print_debugger(); //返回包含邮件内容的字符串,包括EMAIL头和EMAIL正文。用于调试。 } }

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

email->initialize($config)

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

email->send()

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

更多关于CodeIgniter相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《

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

原文地址:https://www.jb51.cc/php/20082.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐