gdpro / gdpro-mailer
Mailer module to manage mailer, message, smtp, logger, jobs
1.1.3
2017-02-13 13:13 UTC
Requires
- php: >=5.5.8
- zendframework/zend-mail: ^2.7
- zendframework/zend-view: ^2.8
Requires (Dev)
- container-interop/container-interop: ^1.1
- gdpro/gdpro-monolog: ^1.0
- phpunit/phpunit: ~4.3
- slm/queue: ^0.6
- squizlabs/php_codesniffer: ^2.2
- zendframework/zend-console: ^2.6
- zendframework/zend-modulemanager: ^2.7
Suggests
- gdpro/gdpro-monolog: (^1.0) Log your mailer activity
- slm/queue-sqs: (^0.3) Send your mail later by placing them in a queue
This package is auto-updated.
Last update: 2024-10-23 07:21:31 UTC
README
Introduction
Gdpro Mailer is a module manage smtp connection, message, mailer. It permit to add messages in a queue and to execute the job later through command line.
Changelog
Requirements
Please see the composer.json file.
Installation
Run the following composer
command:
$ composer require "gdpro/gdpro-mailer:~1.0"
Alternately, manually add the following to your composer.json
, in
the require
section:
"require": { "gdpro/gdpro-mailer": "~1.0" }
And then run composer update
to ensure the module is installed.
Finally, add the module name to your project's config/application.config.php
under the modules
key:
return array( /* ... */ 'modules' => array( /* ... */ 'GdproMailer', ), /* ... */ );