Skip to content

guliano/esco-mail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EscoMail

Build Status Coverage Status

Introduction

This module wraps ZF2 mail functionality. It supports file attachments, template email composition and extra test mode for sending e-mails to defined root e-mail address instead of real recipient.

Requirements

Please see the composer.json file.

Installation

Run the following composer command:

$ composer require guliano/esco-mail

Alternately, manually add the following to your composer.json, in the require section:

Finally, add the module name to your project's config/application.config.php under the modules key:

return array(
    /* ... */
    'modules' => array(
        /* ... */
        'EscoMail',
    ),
    /* ... */
);

Usage

TODO

Configuration

User Configuration

This module utilizes the top level key esco-mail for user configuration.

Key: mail_test_mode

TODO