Resend API

Send Emails
via Resend

Single recipient, bulk send, or advanced CC/BCC — powered by Laravel & Resend.

✉️

Send to Single Recipient

Compose and send an email to one address

📬

Send to Multiple Recipients

Each recipient gets an individual email

Separate with commas, semicolons, or new lines.

⚙️

Advanced — CC & BCC

Full control with carbon copy support

Separate with commas

Separate with commas

🔧

Configuration Guide

Set up Resend in your .env file

⚙️ .env — Resend Setup

MAIL_MAILER=resend RESEND_API_KEY=re_xxxxxxxxxxxxxxxxx MAIL_FROM_ADDRESS=noreply@yourdomain.com MAIL_FROM_NAME="${APP_NAME}"

📄 config/mail.php — Add mailer

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

🚀 Artisan Commands

# Install Resend package composer require resend/resend-laravel # Clear config after editing .env php artisan config:clear php artisan optimize:clear # Start dev server php artisan serve