码迷,mamicode.com
首页 > 其他好文 > 详细

yii2.0 发送邮件笔记

时间:2015-05-05 14:18:41      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

  Yii2.0内部已经集成了swiftmailer发送邮件类,无需再用phpmailer之类的类了,听说swiftmailer这个也很强大.既然yii2.0内部已经有了swiftmailer扩展,则就用它内部的方法实现就好了.

 在web.php里配置邮件的相关参数:

  

‘mailer‘ => [  
           ‘class‘ => ‘yii\swiftmailer\Mailer‘, //引入swiftmailer扩展
           ‘transport‘ => [  
               ‘class‘ => ‘Swift_SmtpTransport‘,  
               ‘host‘ => ‘smtp.163.com‘,//smtp服务器host
               ‘username‘ => ‘*****‘, //登录163的账号不要@以后的内容
               ‘password‘ => ‘*****‘,  //登录密码
               ‘port‘ => ‘25‘,  //端口
               ‘encryption‘ => ‘tls‘,  //貌似是加密方式,没查到
                                   
                           ],   
           ‘messageConfig‘=>[  
               ‘charset‘=>‘UTF-8‘, //消息编码为utf-8
               ‘from‘=>[‘*****‘=>‘admin‘]//发送人邮箱  
               ],  
        ],

 

然后在方法里写下:

$mail= Yii::$app->mailer->compose();   //定义一个发送对象
        $mail->setTo(‘******‘); //接收人邮箱 
        $mail->setSubject("邮件测试"); //标题
        $mail->setTextBody(‘zheshisha ‘); //内容
        $html = ‘‘;
        $html.= ‘<table border="1">‘;
        $html.= ‘<tr><th>1</th><th>2</th><th>3</th><th>4</th></tr>‘;
        $html.= ‘<tr><td>asd</td><td>dssad</td><td>asddsa</td><td>asdasda</td></tr>‘;
        $html.=‘</table>‘;
        $mail->setHtmlBody($html);  //发送的html内容
        //根据返回值判断  
        if($mail->send())  
            echo "发送成功";  
        else  
            echo "发送失败";   
        die();

就可以发出邮件了.

 

yii2.0 发送邮件笔记

标签:

原文地址:http://www.cnblogs.com/tudou1223/p/4478805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!