https://github.com/walisc/cakephpquickemailer
A Emailer plugin for Cakephp 2.0. Designed for minimum setup. Once installed you start sending emails right away.
https://github.com/walisc/cakephpquickemailer
Last synced: 4 months ago
JSON representation
A Emailer plugin for Cakephp 2.0. Designed for minimum setup. Once installed you start sending emails right away.
- Host: GitHub
- URL: https://github.com/walisc/cakephpquickemailer
- Owner: walisc
- Created: 2015-12-18T10:07:55.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-30T16:27:00.000Z (over 10 years ago)
- Last Synced: 2025-06-16T08:09:04.339Z (12 months ago)
- Language: HTML
- Size: 1.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CakePhp Quick Emailer
===================
CakePhp Quick Emailer is a plugin to get your cakephp application emailing as fast as possible. Once installed you can access varying email views which your application can use to email straight aaway
**Version**
v1.0 - initial version
**Usage**
Rename the quick_emailer_config.php.default to quick_emailer.config.php. Add the appropriate entries
Config/bootstrap.php
CakePlugin::load('QuickEmailer', array('bootstrap' => 'quick_emailer_config'));
class AppController extends Controller {
public $helpers = array('QuickEmailer.QuickEmailerUI'); // helper to access graphical elements
public $components = array('QuickEmailer.QuickEmailerAPI'); // Main API to access most methods
}
-- Using the QuickEMailer UI
- In whichever view:-
echo $this->QuickEmailerUI->GetEmailer('basic'); //or advance, to have the WSGYI textbox
-- Using the QuickEmailer API
-- Need to download bootstrap, and jquery
default.ctp (using bootstrap)
echo $this->Html->css('bootstrap.min');
echo $this->Html->css('bootstrap-theme.min');
echo $this->Html->script('jquery-2.1.4.min');
echo $this->Html->script('bootstrap.min');