2017 © Pedro Peláez
 

library error-tracker-adapter-email

Send email reports on exceptions

image

morrislaptop/error-tracker-adapter-email

Send email reports on exceptions

  • Sunday, September 20, 2015
  • by morrislaptop
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

error-tracker-adapter-email

Build
Status Total
Downloads Latest Stable
Version, (*1)

Send email reports on exceptions, using the Tracker interface from error-tracker-adapter, (*2)

Installation

The recommended way to install is through Composer:, (*3)

$ composer require morrislaptop/error-tracker-adapter-email

Usage

The use of this library is a reporter and not a renderer. So it's recommended that you handle exceptions in your application with your own class and then report to this library if it's the right error type and/or environment., (*4)

<?php

// Setup dependencies (much easier with a IoC container)
$transport = new Swift_SendmailTransport();
$mailer = new Swift_Mailer($transport);
$message = new Swift_Message();
$message->addTo('craig.michael.morris@gmail.com');
$message->setFrom('craig.michael.morris@gmail.com');
$body = new Body(new VarCloner(), new CliDumper());
$compiler = new Compiler(new CommonMarkConverter(), new CssToInlineStyles());

// Create reporter
$email = new Email($mailer, $message, $body, $compiler);

// Act.
$exception = new DomainException('Testing a domain exception');
$email->report($exception, ['only' => 'testing', 'user' => Session::all()]);

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

See CONTRIBUTING file., (*5)

Unit Tests

In order to run the test suite, install the developement dependencies:, (*6)

$ composer install --dev

Then, run the following command:, (*7)

$ phpunit && phpspec run

MailTrap is used to check that emails are sent in the integration tests. You may copy phpunit.xml.dist and set your API keys in there to complete your tests., (*8)

Versioning

Follows Semantic Versioning., (*9)

License

MIT license. For the full copyright and license information, please read the LICENSE file that was distributed with this source code., (*10)

The Versions