resend / resend-php
Resend PHP library.
Installs: 2 852 507
Dependents: 19
Suggesters: 9
Security: 0
Stars: 53
Watchers: 3
Forks: 5
Open Issues: 8
pkg:composer/resend/resend-php
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
- dev-main
- v1.0.1
- v1.0.0
- v0.23.0
- v0.22.0
- v0.21.0
- v0.20.0
- v0.19.1
- v0.19.0
- v0.18.1
- v0.18.0
- v0.17.0
- v0.16.0
- v0.15.2
- v0.15.1
- v0.15.0
- v0.14.0
- v0.13.0
- v0.12.0
- v0.11.0
- v0.10.1
- v0.10.0
- v0.9.0
- v0.8.0
- v0.7.2
- v0.7.1
- v0.7.0
- v0.6.0
- v0.5.4
- v0.5.3
- v0.5.2
- v0.5.1
- v0.5.0
- v0.4.0
- v0.3.1
- v0.3.0
- v0.2.0
- v0.1.1
- v0.1.0
- dev-php-8.5
- dev-renovate/actions-checkout-6.x
- dev-renovate/pestphp-pest-4.x
This package is auto-updated.
Last update: 2025-11-21 04:21:56 UTC
README
Examples
Send email with:
Getting started
Requires PHP 8.1+
First, install Resend via the Composer package manager:
composer require resend/resend-php
Then, interact with Resend's API:
$resend = Resend::client('re_123456789'); $resend->emails->send([ 'from' => 'onboarding@resend.dev', 'to' => 'user@gmail.com', 'subject' => 'hello world', 'text' => 'it works!', ]);
Note This client is inspired by OpenAI PHP.