yii2 发送邮件
yii2 发送邮件
'mailer' => [ 'class' => \yii\symfonymailer\Mailer::class, 'viewPath' => '@app/mail', //smtp://用户名:密码@smtp.qq.com:465 // 25 端口 阿里云不能发送 465 端口可以 'transport' => [ 'dsn'=>'smtp://[email protected]:授权码@smtp.126.com:465' ], // send all mails to a file by default. 'useFileTransport' => false, ]
Yii::$app->mailer->compose() ->setFrom('[email protected]') ->setTo("[email protected]") ->setSubject("邮件测试") ->setTextBody('Plain text content') ->setHtmlBody('<b>HTML content</b>') ->send();
参考:https://chuna2.787528.xyz/hu308830232/p/18243347
参考:https://chuna2.787528.xyz/angellating/p/7241366.html
浙公网安备 33010602011771号