timfeid/laravel-sendgrid

Add sendgrid api methods to Laravel's Mail

Downloads

562

Stars

3

Version

3.0.0

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 protected]');
        $mail->subject('Crazy subject');
    });
timfeid

Author

timfeid