qu-modules/qu-phpmailer

PHPMailer 的 ZF2 模块

安装数: 1,592

依赖: 0

建议者: 0

安全: 0

星标: 2

关注者: 2

分支: 0

开放问题: 0

类型:模块

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

This package is not auto-updated.

Last update: 2024-09-14 13:50:52 UTC


README

PHPMailer 的 ZF2 模块

发行说明

1.0.0-dev

  • 在 zf2 中初始化 PHPMailer

要求

安装

  • 将文件夹拖入模块文件夹或 vendor 文件夹
  • 在 application.config.php 中启用模块

使用 Composer 安装

如果不知道 composer,请查看信息并克隆 git

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

集成

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

参考 PHPMailer 中的使用方法和条件

  • 查看 QuPHPMailer/src/PHPMailer 中的 README