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

I am receiving a PHP exception: PostmarkException 406 from the API. In that exception there is a message which indicates what emails are inactive. Currently I have to parse the...

I can successfully send e-mail as in your example: ``` $sendResult = $client->sendEmail( "[email protected]", "[email protected]", "Hello from Postmark!", "This is just a friendly 'hello' from your friends at Postmark." );...

Hi, I have been trying to send an email out on Kartra using Postmark Servers but I keep getting this error, the email send to another list with around 2k...

I've extended the `PostmarkClient::sendEmail()` and `PostmarkClient::sendEmailWithTemplate()` to work asynchronously in a private project. If there's any interest in this feature, I'd be happy to work on a PR.

In all return new DynamicResponseModel($this->processRestRequest('POST', '/email', $body)); statements, the types are mixed. DynamicResponseModel expects an array, but $this->processRestRequest returns an Object.

As per this feedback: https://twitter.com/reinink/status/737391939914326017 Add an overload for "sendEmail" (and other endpoints that make sense) to accept a Message Object, allowing easier construction of complex message payloads, and less...

There are cases where the Guzzle dependency gets conflicted with users' other dependencies. Remove guzzle as a dependency from Postmark-PHP.

This is a random list of suggestions I see with the API when reviewing it for use: **Inject the guzzle client via setter** I am unable to provide a guzzle...

I've installed this package with Lumen and try to send an email with pdf attachment. I've used `barryvdh` to generate pdf and try to use it as below: ``` $templateData...

Calling `sendEmailWithTemplate()` with an empty model (eg `array()`, `null`, etc) fails with a `Received valid, but incompatible JSON input` error. Would be nice if empty models were removed from the...