yii发送邮件

第一步:登录qq邮箱----->设置------>账户------>yii发送邮件_第1张图片
必须保持开启状态.(qq邮箱官方会发一个授权码给你.)
第二步:

'mailer' => [
            'class' => 'yii\swiftmailer\Mailer',
            // send all mails to a file by default. You have to set
            // 'useFileTransport' to false and configure a transport
            // for the mailer to send real emails.
            'useFileTransport' => false,//默认
            'transport' => [
                //这里如果你是qq的邮箱,可以参考qq客户端设置后再进行配置 http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=1001256
                'class' => 'Swift_SmtpTransport',//默认
                'host' => 'smtp.qq.com',//默认
                // qq邮箱
                'username' => '********@qq.com',
                //授权码, 什么是授权码, http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=1001256
                'password' => 'qq官方发给你的授权码',
                'port' => '465',//默认
                'encryption' => 'ssl',//默认
            ],
            'messageConfig'=>[
                'charset'=>'UTF-8',
                'from'=>['*******@qq.com'=>'admin']
            ],
        ],

第三步:

public function actionSendmail()
    {
     
        $mail = \YII::$app->mailer->compose();
        $mail->setTo("***@qq.com");
        $mail->setSubject("邮件测试");
        $mail->setTextBody("textbody 25 ok?");//发布纯文字文本
        //$mail->setHtmlBody("htmlbody");//发布可以带html标签的文本
        if($mail->send()){
     
            echo "success";
        }else{
     
            echo "failure";
        }
    }

你可能感兴趣的:(yii冷门知识,php)