在CI中集成phpmailer,方便使用SMTP发送邮件

直接使用phpmailer的话,有时候不是很方便,特别你的很多功能都是基于CI完成的时候,要相互依赖就不方便了,所以在想,那是否可以将phpmailer集成到CI中呢,像使用email类这样使用他,功夫不负有心人,在网上居然有人分享了很多内容,但是之前的CI是支持插件功能的,所以很多文章都是说的基于插件的方式,现在CI有了新的调整,基于类的方式。最后找到一篇文章,可以帮助我们解决这个问题,将phpmailer集成到CI中,成为类,大家可以去到这个url查看详细的介绍:http://blog.qoding.us/2011/09/codeigniter-using-phpmailer-to-send-email-via-gmail/

 

最近要處理一個電子報系統,再用 CI 那跛腳 Email Class 大概會被客訴到瘋掉。所以還是認命改用老牌的 PHPMailer Library。稍微試一下,發現在 CI 裡使用 PHPMailer 相當無痛,先到官網下載一份 PHPMailer (本文完成時的最新版本是 5.2.0),解壓縮後把整個資料夾丟到 CI\\application\\libraries\\PHPMailer_5.2.2。接著在 libraries 下建立新檔案,就叫 mailer.php 好了。

 

 

 

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 
 
class Mailer {
 
    var $mail;
 
    public function __construct()
    {
        require_once('PHPMailer_5.2.2/class.phpmailer.php');
 
        // the true param means it will throw exceptions on errors, which we need to catch
        $this->mail = new PHPMailer(true);
 
        $this->mail->IsSMTP(); // telling the class to use SMTP
 
        $this->mail->CharSet = "utf-8";                  // 一定要設定 CharSet 才能正確處理中文
      //  $this->mail->SMTPDebug  = 0;                     // enables SMTP debug information
        $this->mail->SMTPAuth   = true;                  // enable SMTP authentication
      //  $this->mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
        $this->mail->Host       = "smtp.163.com";      // sets 163 as the SMTP server
        //$this->mail->Port       = 465;                   // set the SMTP port for the 163 server
        $this->mail->Username   = "xxxxxx@163.com";// 163 username
        $this->mail->Password   = "xxxxxxxxx";       // 163 password
       /// $this->mail->AddReplyTo('@163.com', 'YOUR_NAME');	 //回复地址(可填可不填)
        //$this->mail->SetFrom('YOUR_GAMIL@163.com', 'YOUR_NAME'); 
    }
 
    public function sendmail($to, $to_name, $subject, $body){
        try{
            $this->mail->From = 'xxxx@163.com';
            $this->mail->FromName = 'xxxxxx';
            $this->mail->AddAddress($to, $to_name);
            
            $mail->WordWrap = 50;                                 // Set word wrap to 50 characters
            $this->mail->IsHTML(true);                                  // 使用html格式

            $this->mail->Subject = $subject;
            $this->mail->Body    = $body;

 
            $this->mail->Send();
                echo "Message Sent OK</p>\n";
 
        } catch (phpmailerException $e) {
            echo $e->errorMessage(); //Pretty error messages from PHPMailer
        } catch (Exception $e) {
            echo $e->getMessage(); //Boring error messages from anything else!
        }
    }
}
 
/* End of file mailer.php */

接著在 Controller 裡呼叫這支 library 就可以了,範例如

<?php

		class Message extends CI_Controller{
			public function __construct(){
			        parent::__construct();
			 }


			public function send(){
				        $mail_body = "这是主题的内容";
				        $this->load->library('mailer');
				        $this->mailer->sendmail(
				            'it6780@qq.com',
				            'charles',
				            '這是測試信 '.date('Y-m-d H:i:s'),
				            $mail_body
				        );
		
			}	
		}	

 

  

下。

  

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值