Built for Laravel.
Loved by artisans.
Send transactional emails from your Laravel app in under 60 seconds. Native mail driver, zero config, artisan commands included.
Up and running in 3 steps
Install the package
composer require lettr/laravelAdd your API key
LETTR_API_KEY=your-api-keySend your first email
php artisan lettr:test hello@example.comUse your existing Mailables
No proprietary APIs to learn. Lettr works as a native Laravel mail transport, so your existing code just works.
use Illuminate\Support\Facades\Mail;
// Send a simple email
Mail::lettr()
->to('user@example.com')
->sendTemplate('welcome-email', 'Welcome!', [
'name' => 'John',
'company' => 'Acme Inc',
]);
// Or use Laravel's Mailables
Mail::to($user)->send(new WelcomeMail($user));Zero Configuration
Lettr auto-configures your Laravel mail driver. Install the package, set your API key, and start sending. No config files to edit, no service providers to register.
Native Mail Support
Use standard Laravel Mailables and Notifications as you always have. Lettr works with the native Mail facade, Markdown mailables, and queued mail out of the box.
Artisan Commands
Test your connection, verify your domain, and inspect delivery status directly from the terminal. Built-in artisan commands for every step of the workflow.
3,000 emails/month free. No credit card required.