resend/resend-php

Resend PHP 库。

v0.13.0 2024-08-15 03:27 UTC

README

Tests Packagist Downloads Packagist Version License

示例

使用 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 的启发。