openbuildings / html-email
Send emails with SwiftMailer, Postmark, Kohana views, logger, filter and more.
Installs: 5 531
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 16
Forks: 0
Open Issues: 0
Type:kohana-module
Requires
This package is not auto-updated.
Last update: 2022-02-01 12:38:51 UTC
README
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');