Download the PHP package wildbit/laravel-postmark-provider without Composer
On this page you can find all versions of the php package wildbit/laravel-postmark-provider. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download wildbit/laravel-postmark-provider
More information about wildbit/laravel-postmark-provider
Files in wildbit/laravel-postmark-provider
Package laravel-postmark-provider
Short Description An officially supported mail provider to send mail from Laravel through Postmark, see instructions for integrating it here: https://github.com/wildbit/laravel-postmark-provider/blob/master/README.md
License MIT
Informations about the package laravel-postmark-provider
Sunset Notice:
The Laravel Postmark Provider is no longer being actively updated. The following is a short discussion on the reasoning for discontinuing the provider. However, it's still really easy to still use Postmark in Laravel using SMTP, and since the SMTP provider is part of Laravel, it'll keep working when you update Laravel and you won't need to install any dependencies to use it.
Here's everything you'll need:
Update your config/mail.php
file to include the following:
Advanced Integrations:
We provide an official PHP library that can be installed via composer to do more advanced Postmark integrations. If you want to move beyond basic email sending, Postmark-PHP will give you easy access to all Postmark API endpoints.
Keep using this provider anyway:
The Postmark Laravel Provider was built and will work with versions of Laravel up to 5.2, if you'd still like to use it, please feel free to follow the instructions below.
1. Install this package in your Laravel Project:
2. Define your server token in your .env
file:
3. Add Postmark to your config/services.php
file (it will use the token in your .env
from Step 2):
4. Update your application's MailProvider in your config/app.php
file:
Find this line:
And replace it with:
That's it! You've integrated Postmark into your Laravel Application.