An open API service indexing awesome lists of open source software.

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.

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