yus-ham / yii2-resend
Yii 2 扩展,用于 [Resend](https://resend.com)
v1.0.0
2023-06-18 16:15 UTC
Requires
- php: >8.0
- resend/resend-php: *
- yiisoft/yii2: ~2.0
This package is auto-updated.
Last update: 2024-09-18 19:07:19 UTC
README
你需要这个库吗?只需通过 composer 安装它
composer require yus-ham/yii2-resend --prefer-dist -o
也不要忘记配置
$config['components']['mailer'] = [ 'class' => 'yusham\resend\Mailer', 'useFileTransport' => false, 'viewPath' => '@app/mail', 'transport' => [ 'apiKey' => '<YOUR_API_KEY>' ], ];
然后你可以像平常一样发送电子邮件
Yii::$app->mailer->compose('contact/html') ->setFrom('from@domain.com') ->setTo($form->email) ->setSubject($form->subject) ->send();