10/02
2015
Wallogit.com
2017 © Pedro Peláez
Laravel Gecko Components
, (*1)
Custom Email Queue, (*2)
Mailer with Email queue hookup, (*3)
TextLogging and Email error, (*4)
http://www.geckoweb.co.za, (*5)
Require this package in your composer.json and update composer. This will download the package., (*6)
"geckoweb/gecko": "dev-master"
The normal mail config add the following lines on top., (*7)
/* |-------------------------------------------------------------------------- | 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, (*8)
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
</head>
<body>
{{$heading}}
{{$log}}
</body>
</html>
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!, (*9)