2017 © Pedro Peláez
 

library laravel-sendgrid

Add sendgrid api methods to Laravel's Mail

image

timfeid/laravel-sendgrid

Add sendgrid api methods to Laravel's Mail

  • Tuesday, April 17, 2018
  • by timfeid1
  • Repository
  • 1 Watchers
  • 1 Stars
  • 137 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 9 Versions
  • 7 % Grown

The README.md

Laravel Sendgrid

Installation

config/app.php

    // Remove or comment out:
    // Illuminate\Mail\MailServiceProvider::class,
    // Add
    TimFeid\LaravelSendgrid\LaravelSendgridServiceProvider::class,

config/services.php

    'sendgrid' => [
        'api_key' => env('SENDGRID_API_KEY'),
    ],

.env

SENDGRID_API_KEY=[your_api_key]

Usage

    Mail::send('email.forgot-password', [], function ($mail) {
        // Added category functionality
        $mail->category('forgot-password');
        // Added custom arguments functionality
        $mail->uniqueArgs(['user_id' => 1]);

        // Default Laravel functionality
        $mail->to('email@address.com');
        $mail->subject('Crazy subject');
    });

The Versions

17/04 2018

dev-master

9999999-dev

Add sendgrid api methods to Laravel's Mail

  Sources   Download

MIT

The Requires

 

by Tim Feid

18/01 2018

3.0.0

3.0.0.0

Add sendgrid api methods to Laravel's Mail

  Sources   Download

MIT

The Requires

 

by Tim Feid

17/10 2017

2.0.0

2.0.0.0

Add sendgrid api methods to Laravel's Mail

  Sources   Download

MIT

The Requires

 

by Tim Feid

19/04 2017

1.0.5

1.0.5.0

Add sendgrid api methods to Laravel's Mail

  Sources   Download

MIT

The Requires

 

by Tim Feid

09/02 2017

1.0.4

1.0.4.0

Add sendgrid api methods to Laravel's Mail

  Sources   Download

MIT

The Requires

 

by Tim Feid

03/02 2017

1.0.3

1.0.3.0

Add sendgrid api methods to Laravel's Mail

  Sources   Download

MIT

The Requires

 

by Tim Feid

31/01 2017

1.0.2

1.0.2.0

Add sendgrid api methods to Laravel's Mail

  Sources   Download

MIT

The Requires

 

by Tim Feid

19/01 2017

1.0.1

1.0.1.0

Add sendgrid api methods to Laravel's Mail

  Sources   Download

MIT

The Requires

 

by Tim Feid

11/11 2016

1.0.0

1.0.0.0

Add sendgrid api methods to Laravel's Mail

  Sources   Download

MIT

The Requires

 

by Tim Feid