Snowfire / Laravel-Postmark-Driver by emilsundberg

Adds postmark as an additional email driver in Laravel
101,831
25
6
Package Data
Maintainer Username: emilsundberg
Maintainer Contact: emil@snowfire.net (Emil Sundberg)
Package Create Date: 2014-08-21
Package Last Update: 2018-09-21
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 15:17:44
Package Statistics
Total Downloads: 101,831
Monthly Downloads: 445
Daily Downloads: 22
Total Stars: 25
Total Watchers: 6
Total Forks: 10
Total Open Issues: 0

Send emails in Laravel with Postmark

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!