gpt4 book ai didi

CodeIgniter基于Email类发邮件的方法

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章CodeIgniter基于Email类发邮件的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

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

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

关于CI的Email类的详情请参考:http://codeigniter.org.cn/user_guide/libraries/email.html 。

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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参数。配置完成之后使用 。

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

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

?
1
$this ->email->send()

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

CodeIgniter基于Email类发邮件的方法

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

最后此篇关于CodeIgniter基于Email类发邮件的方法的文章就讲到这里了,如果你想了解更多关于CodeIgniter基于Email类发邮件的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com