Giter VIP home page Giter VIP logo

pigeon's Introduction

Pigeon

Build Status Latest Stable Version License

A more flexible email message builder for Laravel 5 including chained methods, reusable message type configurations, and email layout and template view management.

Note: All Larablocks packages will have releases in line with the major Laravel framework version release. (Ex. Pigeon 5.4.* is tested to work with Laravel 5.4.* while Pigeon 5.1.* is tested to worked with Laravel 5.1.*)

Installation

Add larablocks/pigeon as a requirement to composer.json:

{
    "require": {
        "larablocks/pigeon": "~5.4"
    }
}

Update your packages with composer update or install with composer install.

Laravel Integration

To wire this up in your Laravel project you need to add the service provider. Open app.php, and add a new item to the providers array.

Larablocks\Pigeon\PigeonServiceProvider::class,

Then you may add a Facade for more convenient usage. In your app.php config file add the following line to the aliases array.

'Pigeon' => Larablocks\Pigeon\Pigeon::class,

Note: The Pigeon facade will load automatically, so you don't have to add it to the app.php file but you may still want to keep record of the alias.

To publish the default config file config/pigeon.php along with the default email view files use the artisan command:

php artisan vendor:publish --provider="Larablocks\Pigeon\PigeonServiceProvider"

If you wish to not publish the view files and only publish the config then use the artisan command:

php artisan vendor:publish --provider="Larablocks\Pigeon\PigeonServiceProvider" --tag="config"

Usage as a Facade

Pigeon::

Setting the General Message Properties

Pigeon will load all properties set in the default area of your config before you construct your message.

####Set message addresses:

All these address add methods can be used with any of the address add functions (to, cc, bcc, replyTo, from, sender)

Add a single address with no name

Pigeon::to('[email protected]') 
Pigeon::cc('[email protected]') 
Pigeon::bcc('[email protected]') 
Pigeon::replyTo('[email protected]') 
Pigeon::from('[email protected]') 
Pigeon::sender('[email protected]') 

Add a single address with name

Pigeon::to('[email protected]', 'John Doe')
....

Add array of addresses with no names

Pigeon::to(['[email protected]', '[email protected]']) 
...

Add array of addresses some with names, some without names

Pigeon::to(['[email protected]' => 'John Doe', '[email protected]']) 
...

####Set Subject:

Pigeon::subject('My Subject') 

####File Attachments:

Attach a single file with no options

Pigeon::attach('/path/to/file/attachment')

Attach a single file with options

Pigeon::attach('/path/to/file/attachment', ['as' => 'Attachment', 'mime' => 'jpg'])

Attach an array of files

Pigeon::attach([
    [
     'path' => '/path/to/file/attachment1'
     'options' => []
    ],
    [
     'path' => '/path/to/file/attachment2'
     'options' => ['as' => 'Attachment 2', 'mime' => 'pdf']
    ]
])

Setting the Message View Properties

####Set layout view file:

Pigeon::layout('emails.layouts.my_layout_view')

####Set template view file:

Pigeon::template('emails.templates.my_template_view')

####Passing View Variables:

Passing simple variables:

Pigeon::pass([
 'stringVariable' => 'test string', 
 'intVariable' => 2, 
 'boolVariable' => true
])

Passing object variables:

$user = new User();
$user->first_name = 'John';
$user->last_name = 'Doe';
Pigeon::pass([
 'userObjectVariable' => $user
])

If pass() is used more than once it will merge previously passed variables with the current passed set.

Note: Make sure all variables pre-defined in your layout and template view files are passed to your Pigeon message.

####Clearing View Variables:

Clear all previously passed view variables

Pigeon::clear()

Custom Messages Types

Custom message types will be configured in the config/pigeon.php file. In this file you can find examples on how to properly set up a custom message type.

Default:

Set your defaults for all messages sent with Pigeon in config\pigeon.php

'default' => [
    'to' => [],
    'cc' => [],
    'bcc' => [],
    'replyTo' => [],
    'from' => [], // if nothing is entered here, your mail.php default will still be used
    'sender' => [],
    'attachments' => [],
    'subject' => 'Pigeon Delivery',
    'layout' => 'emails.layouts.default',
    'template' => 'emails.templates.default',
    'message_variables' => []
]

####Load Custom Message:

Set your defaults for a particular message type to be sent with Pigeon in config\pigeon.php

'custom_message_type' => [
    'from' => ['[email protected]' => 'My Custom App'],
    'subject' => 'My Pigeon Custom Message',
    'layout' => 'emails.layouts.default',
    'template' => 'emails.templates.default'
]

This will load all the message properties from your config defined for custom_message_type.

Pigeon::type('custom_message_type');

Order of Loading:

Default -> Custom Message (if set and loaded) -> Properties set with individual Pigeon functions

Sending the Message

####Send Message:

Pigeon::send();

####Send Raw Message:

Pass a string as a param for the send() function and it will use the string as a raw message send and will ignore any view files or view variables assigned.

Pigeon::send('This is my raw message');

Example - Using it all together

Pigeon::to(['[email protected]', '[email protected]'])
->cc('[email protected]')
->bcc('[email protected]')
->subject('This is the Subject')
->attach('/path/to/file/attachment')
->layout('emails.layouts.my_layout_view')
->template('emails.templates.my_template_view')
->pass(['firstVariable' => 'test string', 'secondVariable' => 2, 'thirdVariable' => true])
->send();

Example - Simple call

Pigeon::to('[email protected]')->subject('Testing Pigeon')->send('Sending myself a quick raw message');

Example - Sending a custom message

Pigeon::type('custom_message_type')->to('[email protected]')->send();

Usage as a Passed Dependency

To pass Pigeon as a dependency will will pass the interface Larablocks\Pigeon\PigeonInterface. For now the only library that implements this interface is Larablocks\Pigeon\IlluminateMailer provided by Laravel but we want to allow for other mailing libraries to be used in the future. The config/pigeon.php config file for Pigeon automatically sets IlluminateMailer as the default mailer library for you.

'library' => 'IlluminateMailer',

###Passing Pigeon to a constructor:

public function __construct(Larablocks\Pigeon\PigeonInterface $pigeon) 
{
$this->pigeon = $pigeon;
}

###Starting a new default message:

$this->pigeon->to('[email protected]')->subject('Pigeon Raw Test Message')->send('Sending myself a quick raw message');

###Starting a new custom message type:

$this->pigeon->type('custom_message_type')->to('[email protected]')->send();

License

Pigeon is open-sourced software licensed under the MIT license

pigeon's People

Contributors

emitkowski avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

karna1995

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.