2017 © Pedro Peláez
 

phalcana-module email

Swift mailer wrapper for Phalcana

image

phalcana/email

Swift mailer wrapper for Phalcana

  • Sunday, September 20, 2015
  • by braf
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Latest Stable Version Build Status Total Downloads License, (*1)

Phalcana Email Module

Swift mailer wrapper for the Phalcana project., (*2)

Installation

This module can be installed via composer using the below command., (*3)

composer require phalcana/email

In order for the module to be loaded into Phalcana the module needs to be added into the modules config. This can be found in the app/config/static.php or in the local version app/config/setup.php. For example., (*4)

'modules' => array(
  'email' => MODPATH.'email/',
  'userguide' => MODPATH.'userguide/',
),

Basic Usage

You can get a fresh instance of the email module by getting it from the dependency injector., (*5)

$email = $this->getDi()->get('email', array('My email subject'))
  ->to('email@example.com', 'My name')
  ->from('info@example.com', 'Website name')
  ->message('Message text here')
  ->send();

The Versions

20/09 2015

dev-master

9999999-dev http://phalcana.com

Swift mailer wrapper for Phalcana

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by Neil Brayfield

phalcon kohana phalcana

13/09 2015

v0.8.0

0.8.0.0 http://phalcana.com

Swift mailer wrapper for Phalcana

  Sources   Download

BSD-3-Clause

The Requires

 

by Neil Brayfield

phalcon kohana phalcana