2017 © Pedro Peláez
 

yii-extension yii-mail

Yii send mail

image

sers/yii-mail

Yii send mail

  • Tuesday, July 8, 2014
  • by Sersid
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Yii-mail

Installation

  'import' => array(
    'backend.extensions.yii-mail.models.*',
  ),
  'components' => array(
    '...',
      'mail' => array(
      'class' => 'app.extensions.yii-mail.YiiMail',
    ),
    'config'=>array(
    'class' => 'app.extensions.yii-config.EConfig',
    '...',
    ),
    '...',
  ),

Usage

  Yii::app()->mail->send("USER_REGISTER", array(
    "#USER_LOGIN#" => $model->login,
    "#USER_EMAIL#" => $model->email,
    "...",
  ));

The Versions

08/07 2014

dev-master

9999999-dev

Yii send mail

  Sources   Download

BSD-3-Clause

The Requires

 

yii-mail