resend / resend-laravel by resend

Resend for Laravel
40,185
68
2
Package Data
Maintainer Username: resend
Package Create Date: 2023-02-03
Package Last Update: 2024-03-16
Home Page: https://resend.com/docs/send-with-laravel
Language: PHP
License: MIT
Last Refreshed: 2024-04-28 03:00:04
Package Statistics
Total Downloads: 40,185
Monthly Downloads: 4,646
Daily Downloads: 79
Total Stars: 68
Total Watchers: 2
Total Forks: 2
Total Open Issues: 2

Resend for Laravel

Tests Packagist Downloads Packagist Version License


Provides Resend integration for Laravel and Symfony Mailer.

Requires PHP 8.1+

Examples

Send an email with:

Getting started

First install Resend for Laravel via the Composer package manager:

composer require resend/resend-laravel

Next, you should configure your Resend API key in your application's .env file:

RESEND_API_KEY=re_123456789

Finally, you may use the Resend facade to access the Resend API:

use Resend\Laravel\Facades\Resend;

Resend::emails()->send([
    'from' => 'onboarding@resend.dev',
    'to' => 'user@gmail.com',
    'subject' => 'hello world',
    'text' => 'it works!',
]);

Using Resend's Laravel mailer

Resend for Laravel comes bundled with a Laravel mailer to make it easier to send emails. To start using the Resend mail transport, first create a new mailer definition within your application's config/mail.php configuration file:

'resend' => [
    'transport' => 'resend',
],

Note The Resend mailer will use the RESEND_API_KEY in your application's .env file.

Finally, update the MAIL_MAILER environment variable to use resend:

MAIL_MAILER=resend