laravel-postmark-provider
laravel-postmark-provider copied to clipboard
A Postmark adapter for Laravel 5+
When upgrading to Laravel 5.3 I encountered a warning about the [queue](https://laravel.com/docs/5.3/queues) used so I decided to write a patch (i.e. copy [the default `MailServiceProvider`](https://github.com/laravel/framework/blob/5.3/src/Illuminate/Mail/MailServiceProvider.php)) to add compatibility with Laravel...
is it possible to provide "Tag" property ?
It's really tedious to test the app if the 'log' driver is not enabled using this provider.
After following the instructions from the Packagist website: FatalThrowableError in Mailer.php line 480: Type error: Argument 1 passed to Illuminate\Mail\Mailer::setQueue() must implement interface Illuminate\Contracts\Queue\Factory, instance of Illuminate\Queue\SyncQueue given, called in...
Where is the best way to catch these kinds of errors? ``` GuzzleHttp\Exception\ClientException: Client error: `POST https://api.postmarkapp.com/email` resulted in a `422 Unprocessable Entity` response: {"ErrorCode":406,"Message":"You tried to send to a...
It looks like when I try to send an email with both text and html views along with an attachment I only get the text view. Interestingly, the order of...