Skip to content

resend/resend-php

Repository files navigation

Resend PHP

Tests Packagist Downloads Packagist Version License


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' => '[email protected]',
    'to' => '[email protected]',
    'subject' => 'hello world',
    'text' => 'it works!',
]);

Note This client is inspired by OpenAI PHP.