gdpro / gdpro-mailer
用于管理邮件发送、消息、SMTP、日志、任务的邮件模块
1.1.3
2017-02-13 13:13 UTC
Requires
- php: >=5.5.8
- zendframework/zend-mail: ^2.7
- zendframework/zend-view: ^2.8
Requires (Dev)
- container-interop/container-interop: ^1.1
- gdpro/gdpro-monolog: ^1.0
- phpunit/phpunit: ~4.3
- slm/queue: ^0.6
- squizlabs/php_codesniffer: ^2.2
- zendframework/zend-console: ^2.6
- zendframework/zend-modulemanager: ^2.7
Suggests
- gdpro/gdpro-monolog: (^1.0) Log your mailer activity
- slm/queue-sqs: (^0.3) Send your mail later by placing them in a queue
This package is auto-updated.
Last update: 2024-08-23 06:57:07 UTC
README
简介
Gdpro Mailer 是一个管理 SMTP 连接、消息、邮件发送的模块。它允许将消息添加到队列中,并通过命令行稍后执行任务。
变更日志
需求
请参阅 composer.json 文件。
安装
运行以下 composer
命令
$ composer require "gdpro/gdpro-mailer:~1.0"
或者,手动将以下内容添加到您的 composer.json
文件中,在 require
部分
"require": { "gdpro/gdpro-mailer": "~1.0" }
然后运行 composer update
以确保模块已安装。
最后,将模块名称添加到您的项目配置文件 config/application.config.php
下的 modules
键下
return array( /* ... */ 'modules' => array( /* ... */ 'GdproMailer', ), /* ... */ );