resend/resend-php

feat: Add a fluent interface

Opened this issue · 0 comments

To improve the development experience it might be handy to create a fluent interface to easily send emails:

use Resend\Email;

$resend = Resend::client('re_123456789');

$email = (new Email())
    ->to('...')
    ->from('...')
    ->subject('...')
    ->text('...');

if ($user->is_premium) {
    $email->html('...');
}

$resend->sendEmail($email);