openbuildings/html-email

此包已被弃用且不再维护。未建议替代包。

使用SwiftMailer、Postmark、Kohana视图、日志记录器、过滤器等功能发送邮件。

安装数: 5,531

依赖者: 0

建议者: 0

安全: 0

星标: 2

关注者: 16

分支: 0

开放问题: 0

类型:kohana-module

0.1.5 2015-07-03 13:16 UTC

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');