2017 © Pedro Peláez
 

library laravel-email-queue-checker

Will check that your applications email queue is working properly

image

adaptivemedia/laravel-email-queue-checker

Will check that your applications email queue is working properly

  • Tuesday, September 19, 2017
  • by viirre
  • Repository
  • 1 Watchers
  • 0 Stars
  • 458 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Email queue checker for Laravel projects to verify that your email queue is running

Latest Version on Packagist Build Status Total Downloads, (*1)

In many projects there's an email queue that is responsible for sending emails. To make sure that the email queue is running, this package will add an email to the queue so it will be sent to a central system that receives the email and confirms that the queue is up and running. This package requires Laravel, at least version 5.2., (*2)

Installation

You can install the package via composer:, (*3)

composer require adaptivemedia/laravel-email-queue-checker

Add the service provider

// config/app.php

'providers' => [
    // ...
    Adaptivemedia\EmailQueueChecker\EmailQueueCheckerServiceProvider::class,
];

If you're on Laravel 5.5, this package will be registered automatically via Laravels Package Discovery, (*4)

Add console command to Kernel

// app/Console/Kernel.php

protected $commands = [
    \Adaptivemedia\EmailQueueChecker\AddEmailQueueCheckerEmailCommand::class
];

Add a scheduling event to the command

// app/Console/Kernel.php

protected function schedule(Schedule $schedule)
{
    $schedule->command('email-queue-checker:add-email')->hourly();
}

Publish the config and edit it

php artisan vendor:publish --provider="Adaptivemedia\EmailQueueChecker\EmailQueueCheckerServiceProvider" --tag="config"

Changelog

Please see CHANGELOG for more information what has changed recently., (*5)

Testing

bash $ composer test, (*6)

Contributing

Please see CONTRIBUTING for details., (*7)

Security

If you discover any security related issues, please email info@adaptivemedia.se instead of using the issue tracker., (*8)

Credits

About Adaptivemedia

Adaptivemedia is a web development agency based in Stockholm, Sweden. Check out our website at here., (*9)

License

The MIT License (MIT). Please see License File for more information., (*10)

The Versions

19/09 2017

dev-master

9999999-dev https://github.com/adaptivemedia/laravel-email-queue-checker

Will check that your applications email queue is working properly

  Sources   Download

MIT

The Requires

 

The Development Requires

adaptive media email-queue-checker

19/09 2017

v1.1.3

1.1.3.0 https://github.com/adaptivemedia/laravel-email-queue-checker

Will check that your applications email queue is working properly

  Sources   Download

MIT

The Requires

 

The Development Requires

adaptive media email-queue-checker

19/09 2017

v1.1.2

1.1.2.0 https://github.com/adaptivemedia/laravel-email-queue-checker

Will check that your applications email queue is working properly

  Sources   Download

MIT

The Requires

 

The Development Requires

adaptive media email-queue-checker

18/09 2017

v1.1.1

1.1.1.0 https://github.com/adaptivemedia/laravel-email-queue-checker

Will check that your applications email queue is working properly

  Sources   Download

MIT

The Requires

 

The Development Requires

adaptive media email-queue-checker

18/09 2017

v1.1.0

1.1.0.0 https://github.com/adaptivemedia/email-queue-checker

Will check that your applications email queue is working properly

  Sources   Download

MIT

The Requires

 

The Development Requires

adaptive media email-queue-checker

02/06 2017

v1.0.0

1.0.0.0 https://github.com/adaptivemedia/email-queue-checker

Will check that your applications email queue is working properly

  Sources   Download

MIT

The Requires

  • php ^7

 

The Development Requires

adaptive media email-queue-checker