2017 © Pedro Peláez
 

library laravel-mailcatcher

A service provider for Alexandre Salome's PHP Mailcatcher SDK

image

agouticreative/laravel-mailcatcher

A service provider for Alexandre Salome's PHP Mailcatcher SDK

  • Wednesday, June 15, 2016
  • by agouticreative
  • Repository
  • 1 Watchers
  • 0 Stars
  • 49 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

laravel-mailcatcher

A Laravel service provider that returns the data on a Mailcatcher instance as an Eloquent collection of models., (*1)

Most of the heavy lifting is done by Mailcatcher SDK for PHP, (*2)

Installation

  1. install Mailcatcher.
  2. from the root of your project, run this command: composer install https://github.com/agouticreative/laravel-mailcatcher
  3. Add Agouti\LaravelMailcatcher\ServiceProvider::class to the providers array in config/app.php
  4. Add 'Mailcatcher' => Agouti\LaravelMailcatcher\Facade::class to the aliases array in config/app.php
  5. from the root of your project run this command: php artisan vendor:publish
  6. If your Mailcatcher instance is reached at a port and location combination different from http://localhost:1080/ then change the url propery in config/mailcatcher.php to reflect the correct location

Usage

Use Mailcatcher::search() to search the Mailcatcher instance for messages. Search takes an array of filtering arguments in the manner of the aforementioned Mailcatcher PHP SDK. Refer to that repo's instructions to learn more. A simple Mailcatcher::search() will return all messages on Mailcatcher., (*3)

The messages' models will have these attributes:, (*4)

  • id (integer)
  • sender (array with name and email keys)
  • recipients (array of arrays with name and email keys)
  • subject (string)
  • content (string)
  • url (a URL for viewing the content of the message, like http://localhost:1080/messages/1.html. This is particuarly useful for PHPUnit or Selenium testing.)

Attachments are not yet supported., (*5)

The original message object from the SDK is available as the messageObject property on the message model ($collection[0]->messageObject, for example), (*6)

Both the model and the collection have a delete method that will delete messages on Mailcatcher. delete on the collection completely clears out mailcatcher! be careful!, (*7)

This is an alpha release

The Versions

15/06 2016

dev-master

9999999-dev https://github.com/agouticreative/laravel-mailcatcher

A service provider for Alexandre Salome's PHP Mailcatcher SDK

  Sources   Download

MIT

The Requires

 

by Travis Morrison

laravel php mailcatcher