Skip to content
This repository has been archived by the owner on Jan 22, 2018. It is now read-only.

OpenBuildings/html-email

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTML Email

Send emails from Kohana like a boss.

Install

Install with Composer.

composer require openbuildings/html-email

Use latest stable version like: ~0.1.

Usage

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