gdpro/gdpro-mailer

Mailer module to manage mailer, message, smtp, logger, jobs

1.1.3 2017-02-13 13:13 UTC

This package is auto-updated.

Last update: 2024-04-23 06:09:43 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

doc/CHANGELOG.md

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',
    ),
    /* ... */
);