grim-reapper / laravel-advanced-email
An advanced email package for Laravel offering queuing, Blade/HTML templates, attachments, and dynamic configuration.
1.0.0
2025-05-09 17:21 UTC
Requires
- php: ^8.1
- illuminate/contracts: ^9.0 || ^10.0 || ^11.0 || ^12.0
- illuminate/filesystem: ^9.0 || ^10.0 || ^11.0 || ^12.0
- illuminate/mail: ^9.0 || ^10.0 || ^11.0 || ^12.0
- illuminate/queue: ^9.0 || ^10.0 || ^11.0 || ^12.0
- illuminate/support: ^9.0 || ^10.0 || ^11.0 || ^12.0
Requires (Dev)
- orchestra/testbench: ^7.0 || ^8.0 || ^9.0 || ^10.0
- phpunit/phpunit: ^9.0 || ^10.0 || ^11.0
README
A powerful package that enhances Laravel's email capabilities with advanced features for enterprise-level email management.
Features
- Template Management: Database-driven email templates with versioning support
- Advanced Scheduling: Schedule one-time and recurring emails with conditions
- Multi-Provider Support: Automatic failover between multiple email providers
- Email Tracking: Track email opens and link clicks for analytics
- Comprehensive Analytics: Detailed reporting on email performance
- Attachment Handling: Multiple ways to attach files to emails
Installation
composer require grim-reapper/laravel-advanced-email
Publish the configuration:
php artisan vendor:publish --provider="GrimReapper\AdvancedEmail\AdvancedEmailServiceProvider" --tag="config"
Run the migrations:
php artisan migrate
Basic Usage
use GrimReapper\AdvancedEmail\Facades\Email; Email::to('recipient@example.com') ->subject('Welcome to Our Application') ->html('<h1>Welcome!</h1><p>Thank you for signing up.</p>') ->send();
Documentation
For detailed documentation, please refer to the following guides:
License
The MIT License (MIT). Please see License File for more information.