resend / resend-php
Resend PHP 库。
v0.13.0
2024-08-15 03:27 UTC
Requires
- php: ^8.1.0
- guzzlehttp/guzzle: ^7.5
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.13
- mockery/mockery: ^1.6
- pestphp/pest: ^2.0
README
示例
使用 PHP 发送电子邮件
入门
需要 PHP 8.1+
首先,通过 Composer 包管理器安装 Resend
composer require resend/resend-php
然后,与 Resend 的 API 交互
$resend = Resend::client('re_123456789'); $resend->emails->send([ 'from' => '[email protected]', 'to' => '[email protected]', 'subject' => 'hello world', 'text' => 'it works!', ]);
注意 此客户端受 OpenAI PHP 的启发。