gdpro / gdpro-mailer
Mailer module to manage mailer, message, smtp, logger, jobs
Installs: 142
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/gdpro/gdpro-mailer
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: 2025-10-23 09:48:45 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', ), /* ... */ );