LaravelPackages.net
Acme Inc.
Toggle sidebar
it-poet/mymsg-laravel-mail

A Laravel mail driver for mymsg.pw

17
0
0.0.1
About it-poet/mymsg-laravel-mail

it-poet/mymsg-laravel-mail is a Laravel package for a laravel mail driver for mymsg.pw. It currently has 0 GitHub stars and 17 downloads on Packagist (latest version 0.0.1). Install it with composer require it-poet/mymsg-laravel-mail. Discover more Laravel packages by it-poet or browse all Laravel packages to compare alternatives.

Last updated

A Laravel mail driver for mymsg.pw
Install via composer:
composer require it-poet/mymsg-laravel-mail
Add the service provider to your app.php config file:

// Laravel 5: config/app.php

'providers' => [
    ...
    ItPoet\MymsgLaravelMail\MymsgMailServiceProvider::class,
    ...
];

Then publish the config file:

php artisan vendor:publish --provider="ItPoet\MymsgLaravelMail\MymsgMailServiceProvider"

Get your API key here mymsg.pw.
In .env:

MAIL_DRIVER=mymsgmail
MYMSG_API_KEY=your_api_key
Comments