yus-ham/yii2-resend

Yii 2 扩展,用于 [Resend](https://resend.com)

安装: 3

依赖: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:yii2-extension

v1.0.0 2023-06-18 16:15 UTC

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();