leeovery/ laravel-sendinblue
Laravel邮件驱动程序,通过SendInBlue v3 API发送邮件
v0.3.0
2020-03-10 19:03 UTC
Requires
- php: ^7.4
- guzzlehttp/guzzle: ^6.3
- illuminate/mail: ^7.0
- illuminate/support: ^6.0|^7.0
- sendinblue/api-v3-sdk: ^6.1
Requires (Dev)
- orchestra/testbench: ^5.0
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2024-09-11 05:25:17 UTC
README
Laravel邮件驱动程序,通过SendInBlue v3 API发送邮件。
安装
您可以通过composer安装此包
composer require leeovery/laravel-sendinblue
使用
要使用此驱动程序,请将以下配置添加到您的 /config/services.php
文件中
'sendinblue' => [ 'secret' => env('SENDINBLUE_SECRET'), // optionally provide this but will default to whats specified here... 'options' => [ 'endpoint' => 'https://api.sendinblue.com/v3', ], ],
将以下内容添加到您的env文件中,并替换为您的SendInBlue v3 API密钥
SENDINBLUE_SECRET={your SendInBlue v3 API key goes here}
MAIL_DRIVER=sendinblue
测试
composer test
变更日志
请参阅CHANGELOG获取最近更改的详细信息。
贡献
请参阅CONTRIBUTING获取详细信息。
安全
如果您发现任何安全问题,请通过电子邮件me@leeovery.com联系我,而不是使用问题跟踪器。
鸣谢
许可
MIT许可(MIT)。请参阅许可文件获取更多信息。
Laravel包模板
此包是用Laravel包模板生成的。