openbuildings / html-email
此包已被弃用且不再维护。未建议替代包。
使用SwiftMailer、Postmark、Kohana视图、日志记录器、过滤器等功能发送邮件。
0.1.5
2015-07-03 13:16 UTC
Requires
This package is not auto-updated.
Last update: 2022-02-01 12:38:51 UTC
README
像老板一样从Kohana发送邮件。
安装
使用 Composer 安装。
composer require openbuildings/html-email
使用最新稳定版,例如:~0.1
。
使用方法
<?php Email::factory("Welcome to Emailandia!") // Skip the layout ->layout(FALSE) ->plain('emails/plain-text-email-view', array('foo' => $bar)) ->html('emails/html-email-view', array('foo' => $bar)) ->send('username@example.com');