Single recipient, bulk send, or advanced CC/BCC — powered by Laravel & Resend.
Compose and send an email to one address
Each recipient gets an individual email
Full control with carbon copy support
Set up Resend in your .env file
MAIL_MAILER=resend
RESEND_API_KEY=re_xxxxxxxxxxxxxxxxx
MAIL_FROM_ADDRESS=noreply@yourdomain.com
MAIL_FROM_NAME="${APP_NAME}"
'resend' => [
'transport' => 'resend',
],
# 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