-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c04ce1d
commit f9e63e7
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Send emails in Laravel with Postmark | ||
==================================== | ||
[Postmarkapp](http://postmarkapp.com) is an excellent ESP (Email Service Provider). This package makes it possible to send your emails with Postmark without modifing your code. | ||
|
||
Add this to your `composer.json` | ||
|
||
"snowfire/mail": "dev-master" | ||
|
||
Open app.php and **remove** this line: | ||
|
||
Illuminate\Mail\MailServiceProvider | ||
|
||
Add | ||
|
||
Snowfire\Mail\MailServiceProvider | ||
|
||
In your config file `mail.php` change your driver to postmark. | ||
|
||
'driver' => '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! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters