ianvdmerwe / laravel-gecko-lib by ianvdmerwe

Laravel Gecko Components
35
0
1
Package Data
Maintainer Username: ianvdmerwe
Maintainer Contact: ian@geckoweb.co.za (Ian van der Merwe)
Package Create Date: 2014-09-05
Package Last Update: 2015-02-10
Home Page: geckoweb.co.za
Language: PHP
License: Unknown
Last Refreshed: 2024-11-26 15:06:28
Package Statistics
Total Downloads: 35
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

##Laravel Gecko Lib

  • Custom Email Queue

  • Mailer with Email queue hookup

  • TextLogging and Email error

  • http://www.geckoweb.co.za

#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!