oshco / mail-queue
Simple middleware to queue email messages in WebFiori applications.
Installs: 1 053
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.0
- webfiori/framework: *
README
A middleware for queing emails in WebFiori.
The aim of this class library is to provide a middleware which will be executed after the request is processed by the application. This will reduce wait time before the application sends the response.
Classes
- MailQueue: The core class of th library.
Usage
Registering the Middleware
First step in using the middleware is to register it under your WebFiori Application. To register the middleware, modify the code on the class [APP_DIR]\ini\InitMiddleware
as follows:
use oshco\middleware\MailQueue; use webfiori\framework\middleware\MiddlewareManager; class InitMiddleware { public static function init() { MiddlewareManager::register(MailQueue::get()); } }
Using The Middleware
The messages that will be registered must be of type webfiori\email\Email
. Following code snippit shows a basic use case.
$mail1 = new Email($sendAccount); $mail1->addTo('someoneh@example.com'); MailQueue::enqueue(mail1)
License
The library is licensed under MIT license.