💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
### 配置 config/web.php ``` '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' => [ 'class' => 'Swift_SmtpTransport', 'host' => 'smtp.163.com', 'username' => '15267189004@163.com', 'password' => 'lzj19920310', //授权码 'port' => '465', 'encryption' => 'ssl', ], ], ``` ### 发送 compose()方法包含的视图文件在mail文件夹内. ``` $mailer = \Yii::$app->mailer->compose('email', ['id' => $id]); //第一个参数是视图文件名,第二个参数是模板需要的变量 $mailer->setFrom("15267189004@163.com"); $mailer->setTo('649781211@qq.com'); $mailer->setSubject("慕课商城-找回密码"); $mailer->send(); //返回布尔值 ```