qu-modules/qu-phpmailer

ZF2 module for PHPMailer

dev-master 2012-11-27 19:33 UTC

This package is not auto-updated.

Last update: 2024-04-13 11:45:41 UTC


README

ZF2 module for PHPMailer

Release Notes

1.0.0-dev

  • Initiation PHPMailer in zf2

Requirements

Installation

  • Drag a folder into modules folder or vendor folder
  • Enable the module application.config.php

Installation by Composer

See the information if not known composer and clone git

cd YourFolderProject/
php composer.phar require "qu-modules/qu-phpmailer":"dev-master"

Integration

  $sm   = $this->getServiceLocator();
  $mail = $sm->get('QuPHPMailer');
  $mail = $mail->Mail();
  $mail->Send();

References usage and conditions in PHPMailer

  • View read me in QuPHPMailer/src/PHPMailer