Simple package to integrate Laravel email with EmailLabs
dct24/emaillabs-laravel is a Laravel package for simple package to integrate laravel email with emaillabs.
It currently has 0 GitHub stars and 22 downloads on Packagist.
Install it with composer require dct24/emaillabs-laravel.
Discover more Laravel packages by dct24
or browse all Laravel packages to compare alternatives.
Last updated
Simple package to integrate Laravel Email with EmailLabs™ based on https://github.com/beryldev/laravel-emaillabs package.
Require this package with composer:
composer require dct24/emaillabs-laravel
After updating composer, add the EmailLabsServiceProvider to the providers array in config/app.php
If you use Laravel Debugbar with enabled email collector, make sure you load EmailLabsServiceProvider before Debugbar ServiceProvider.
config/app.php:Dct24\EmailLabs\EmailLabsServiceProvider::class,
Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="Dct24\EmailLabs\EmailLabsServiceProvider" --tag=config
After install add to your .env file requred parameters.
EL_APP=your_emaillabs_app_key
EL_SECRET=your_emaillabs_secret_key
EL_SMTP=your_emaillabs_smtp_account_name
Now you can use emaillabs mail driver
MAIL_DRIVER=emaillabs
The Laravel EmailLabs Integration is open-sourced software licensed under the MIT license