interactive-solutions / zf-email-in-background
Installs: 2 145
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 1
Requires
- interactive-solutions/zf-bernard: ^1.2.0
This package is auto-updated.
Last update: 2024-11-05 03:49:36 UTC
README
This is a integration module between RoaveEmailTemplates
and InteractiveSolutions\ZfBernard
and it allows a very simple method of sending emails in the background.
Installation
Simple installation via composer
composer require interactive-solutions/zf-email-in-background
Configuration
None, it's already handled for you by the module
Usage
Assuming you have access to the bernard producer InteractiveSolutions\Bernard\Producer
you simply
want to produce a new message that is an instance of InteractiveSolutions\EmailInBackground\SendEmailMessage
Example
$args = [ 'activationKey' => 'helloWorld' ]; $producer->producer(new SendEmailMessage('email@google.com', 'user:registration', $args));
And voila, you have produced a new message that will send an email in a background task
Running the code in development
Run this command in a terminal for the application root
php public/index.php interactive-solutions:bernard:consume emails
Running the code in production
When running in production you either want a docker container that is running the consume command or have a supervisord process running it.
Example supervisor configuration
[program:emails-in-background]
command=php <path to app root>/public/index.php interactive-solutions:bernard:consume emails
autostart=true
autorestart=true
stderr_logfile=<path to app root>/data/logs/supervisor/emails.err.log
stdout_logfile=<path to app root>/data/logs/supervisor/emails.out.log
user=www-data
group=www-data