snowfire / mail
Adds postmark as an additional email driver in Laravel
v2.1
2018-08-15 16:27 UTC
Requires
- php: >=5.4.0
- illuminate/support: 5.*
- openbuildings/postmark: ^0.3.2
This package is auto-updated.
Last update: 2024-11-10 18:53:11 UTC
README
Postmarkapp is an excellent ESP (Email Service Provider). This package makes it possible to send your emails with Postmark without modifing your code.
Using Laravel 4? Visit the laravel-4
branch
Add this to your composer.json
"snowfire/mail": "2.*"
Open app.php and remove this line:
Illuminate\Mail\MailServiceProvider
Add
Snowfire\Mail\PostmarkServiceProvider
In your .env
change your driver to postmark.
In your config file services.php
add your postmark api key.
'postmark' => [
'api_key' => ''
],
Run a composer update and you are ready to go!