postmark-php icon indicating copy to clipboard operation
postmark-php copied to clipboard

The official PHP library for Postmark.

Results 31 postmark-php issues
Sort by recently updated
recently updated
newest added

Is there a reason the HTTP response object is not being exposed? It would have been useful to have access to it as expected: https://postmarkapp.com/developer/api/overview Currently the http response code...

Hello there, I tried to figure out, and looked some (PostmarkClient.php) for this but I couldn't find it. All I want is, using new line in a value for sendEmailWithTemplate...

Hi! Just to let you know, that you have a small error in ["Sending Attachments example"](https://github.com/wildbit/postmark-php/wiki/Sending-Attachments) The Function sendEmail missing one NULL argument before true: `$sendResult = $client->sendEmail('[email protected]', '[email protected]', "Hello...

Having a set of interfaces for the classes would allow a developer to use the project in their own code, and mock out the `PostmarkClient`, so that his/her own tests...

For users that don't wish to use Composer to install/update Postmark-PHP, zip the `vendor` folder for the project and add it to the GH releases info.

Instead of using Composer I downloaded the bundle zip (v2.1) and am experiencing an SSL error: > exception 'GuzzleHttp\Exception\RequestException' with message 'cURL error 60: SSL certificate problem: unable to get...

I am occasionally seeing InvalidArgumentExceptions when sending emails. It appears that Postmark is passing bad values to Guzzle. "InvalidArgumentException: Invalid resource type: boolean" Here is my question on SO: http://stackoverflow.com/questions/33085043/postmark-guzzle-invalidargumentexception-invalid-resource-type-boolean...

Temporarily suppresses the PHP 8.1 warning: `Return type of Postmark\Models\Suppressions\SuppressionChangeRequest::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice`

Hello, is there any plan to make the codebase to work with PHP 8.1 on may be v5 soon (any ETA)? _(Right it's not working)_ Please also note that PHP...

I am getting this error when trying to reactivate a bounce using the following code. ` $client = new PostmarkClient({token}); $client->activateBounce({bounceId}); ` I think it is because of Line 382...