orainteractive / cakephp3-email-template
Email Template for CakePHP3 based on HTML Email Layouts by MailChimp
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 498
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Type:cakephp-plugin
Requires
Requires (Dev)
- cakephp/cakephp: 3.0.*
- cakephp/cakephp-codesniffer: 2.*
- phpunit/phpunit: 4.1.*
This package is not auto-updated.
Last update: 2024-10-26 19:05:11 UTC
README
About
Email Template for CakePHP 3 is based on HTML Email Layouts by MailChimp and Gourmet/Email.
Specifically, using a modified version of the Base Boxed Basic Query resposive template.
##Installation
The recommended installation way is through Composer.
$ composer require orainteractive/cakephp3-email-template
Load the plugin in config/bootstrap.php
:
Plugin::load('Ora/Email');
Update your email configuration in config/app.php
, example shows default
configuration:
'Email' => [ 'default' => [ 'transport' => 'default', 'from' => 'you@localhost', 'charset' => 'utf-8', 'headerCharset' => 'utf-8', 'layout' => 'Ora/Email.default', 'emailFormat' => 'both', 'helpers' => [ 'Ora/Email.Email' => [ 'modifiers' => [ 'inline' => true, 'clean' => true, ], 'regEx' => [ '' => [ '/<!--(.|\s)*?-->/' => '', '!/\*[^*]*\*+([^/][^*]*\*+)*/!' => '', ], ], 'template' => [ 'company' => 'My Company LLC', 'fontColor' => '#000000', 'backgroundColor' => '#FFFFFF', 'foregroundColor' => '#CECECE', 'logo' => 'https://s3.amazonaws.com/assets.myapp.com/email/logo.png', 'homeLink' => 'http://myapp.com', 'facebookLink' => 'http://facebook.com/myapp', 'twitterLink' => 'http://twitter.com/myapp', ], ], ], ], ],
Documentation
The following modifier
properties can be used to modify the HTML prior to sending:
Inline CSS uses tijsverkoyen/CssToInlineStyles
The following template
properties can be used in the template configuration:
Usage
In your app, send Emails as normal:
use Cake\Network\Email\Email; $email = new Email('default'); $email->to($user->email) ->subject('Welcome to my app!') ->template('welcome') ->send('Hope you enjoy using my app.');
License
Copyright (c) 2015, Ora Interactive and licensed under The MIT License.