atk14 / mail-panel
A panel for Tracy Debugger showing html and plain output of ApplicationMailer
Installs: 34 114
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- php: >=5.0.0
- tracy/tracy: >=2.2
This package is auto-updated.
Last update: 2024-11-03 15:29:15 UTC
README
A panel for Tracy Debugger that show output of both html and plaintext versions of emails sent by Atk14 ApplicationMailer.
Basic usage
$bar = Tracy\Debugger::getBar(); $bar->addPanel(new MailPanel($this->mailer));
Usage in an ATK14 application (built upon Atk14Skelet)
First enable Tracy Debugger.
// file: lib/load.php if( !TEST && !$HTTP_REQUEST->xhr() && php_sapi_name()!="cli" // we do not want Tracy in cli ){ Tracy\Debugger::enable(PRODUCTION, __DIR__ . '/../log/'); }
Add MailPanel panel to Tracy in _application_after_filter().
// file: app/controllers/application_base.php function _application_after_filter(){ if(!TEST){ $bar = Tracy\Debugger::getBar(); $bar->addPanel(new MailPanel($this->mailer)); } }
Installation
Just use the Composer:
$ cd path/to/your/atk14/project/
$ composer require atk14/mail-panel