denvers / reporter
This package is abandoned and no longer maintained.
No replacement package was suggested.
Easily send debug messages to your INBOX
0.1.6
2014-04-10 09:18 UTC
Requires
- filp/whoops: 1.1.*
- phpmailer/phpmailer: 5.2.*
This package is not auto-updated.
Last update: 2023-08-29 01:54:14 UTC
README
Report (error) messages to given emailaddress using given subject and message. This reporter will automatically add relevant environment variables so you don't have to think about that every time.
Install
Install using Composer. Reporter is available as a package via Packagist, so just include Reporter in the composer.json
file of your project, run composer update
and you are ready to go!
Usage
// Include the composer autoloader once and the Reporter is available to you! denvers\Reporter::report("your@emailaddress.com", "Something to remember", "User did something we need to investigate", array("variable1", "key" => "variable2"));