geckoweb / gecko
Laravel Gecko Components
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/geckoweb/gecko
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2025-11-04 09:56:35 UTC
README
-
Custom Email Queue
-
Mailer with Email queue hookup
-
TextLogging and Email error
#Installation
Require this package in your composer.json and update composer. This will download the package.
"geckoweb/gecko": "dev-master"
The normal mail config add the following lines on top.
/* |-------------------------------------------------------------------------- | Gecko Mailer Vars |-------------------------------------------------------------------------- | Use the Email Queue */ 'use_queue' => true, 'email_queue_important_batch' => 100, 'email_queue_normal_batch' => 300, 'email_default_cc' => 'admin@yourdomain.com',
For the text error logging you will need to add to your view : email/error/logEmail.blade.php
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="utf-8"> </head> <body> <h2>{{$heading}}</h2> <div> {{$log}} </div> </body> </html>
License
This package is licensed under LGPL. You are free to use it in personal and commercial projects. The code can be forked and modified, but the original copyright author should always be included!