Heim  >  Artikel  >  php教程  >  thinkphp使用phpmailer发送邮件的方法

thinkphp使用phpmailer发送邮件的方法

WBOY
WBOYOriginal
2016-06-06 20:16:501207Durchsuche

这篇文章主要介绍了thinkphp使用phpmailer发送邮件的方法,包含了配置发送邮件类、设置参数及发送邮件测试等的具体步骤,具有一定的实用价值,需要的朋友可以参考下

本文实例讲述了thinkphp使用phpmailer发送邮件的方法。分享给大家供大家参考。具体分析如下:

phpmailer发送邮件是php开发者首选的一个邮件发送插件了,下面我来介绍怎么集成phpmailer到thinkphp框架了,感兴趣的朋友可以参考一下。

phpmailer发送邮件功能很强大,今天真正的体验一下,这里先简单说一下配置,本人是在thinkphp中使用的.

配置步骤:

1.后台配置发送邮件类,位置admin/common/common.php中,代码如下:

复制代码 代码如下:

function sendmail($tomail,$title,$content) 

/*邮件设置信息*/ 
        $email_set = C('EMAIL_SET'); 
        Vendor('phpmailer.class#phpmailer'); 
        Vendor("phpmailer.class#smtp"); //可选,否则会在class.phpmailer.php中包含 
         
        $mail = new PHPMailer(true); //实例化PHPMailer类,true表示出现错误时抛出异常 
         
        $mail->IsSMTP(); // 使用SMTP 
          $mail->CharSet ="UTF-8";//设定邮件编码 
          $mail->Host       = $email_set['Host']; // SMTP server 
          $mail->SMTPDebug  = 1;                     // 启用SMTP调试 1 = errors  2 =  messages 
          $mail->SMTPAuth   = true;                  // 服务器需要验证 
          $mail->Port       = $email_set['port'];                    // 设置端口 
         // $mail->SMTPSecure = "ssl";      
            /* 
            $mail->SMTPSecure = "ssl";                  
            $mail->Host       = "smtp.gmail.com";      
            $mail->Port       = 465;                   
            */ 
         
          $mail->Username   = $email_set['email_user']; //SMTP服务器的用户帐号 
          $mail->Password   = $email_set['email_pwd'];       //SMTP服务器的用户密码 
          $mail->AddReplyTo($email_set['email'],$email_set['email_name']); //收件人回复时回复到此邮箱,可以多次执行该方法 
          if (is_array($tomail)){ 
              foreach ($tomail as $m){ 
                   $mail->AddAddress($m, 'user');  
              } 
          }else{ 
              $mail->AddAddress($tomail, 'user'); 
          } 
          
          $mail->SetFrom($email_set['email'],$email_set['email_name']); 
        // $mail->AddAttachment('./img/phpmailer.gif');      // 添加附件,如果有多个附件则重复执行该方法 
          $mail->Subject = $title; 
         
          //以下是邮件内容相关 
          $mail->Body = $content; 
          $mail->IsHTML(true); 
         
          //$body = file_get_contents('tpl.html'); //获取html网页内容 
         // $mail->MsgHTML(eregi_replace("[]",'',$body)); 

        return $mail->Send()? true:false; 
}


2:配置文件中配置参数,代码如下:

复制代码 代码如下:

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:浅析php适配器模式(Adapter)Nächster Artikel:浅析php原型模式