o2system/email
Composer 安装命令:
composer require o2system/email
包简介
PHP Email Library
README 文档
README
O2System Email
O2System Email is a PHP Email Protocol Sender Library which is build for working more powerful with O2System Framework, but also can be used for integrated with others as standalone version with limited features.
Composer Installation
The best way to install O2System Email is to use Composer
composer require o2system/email
Usage
use O2System\Email; // Create new email message $message = new Email\Message(); $message->from( 'o2system.framework@gmail.com', 'O2System Framework' ); $message->subject( 'Testing email message' ); $message->body('This is testing email message body content.'); $message->to('mail@steevenz.com', 'Steeven Andrian Salim'); $message->priority( Email\Message::PRIORITY_HIGHEST ); // Create new email spool $spool = new Email\Spool([ 'protocol' => 'mail' ]); $spool->send( $message );
Documentation is available on this repository wiki or visit this repository github page.
Ideas and Suggestions
Please kindly mail us at contact@o2system.id
Bugs and Issues
Please kindly submit your issues at Github so we can track all the issues along development and send a pull request to this repository.
System Requirements
统计信息
- 总下载量: 1.61k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-08-10