Skip to content

walisc/CakephpQuickEmailer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A Emailer plugin for Cakephp 2.0. Designed for minimum setup. Once installed you start sending emails right away.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published