Skip to content

Releases: OpenBuildings/postmark

PSR-2, PSR-4 and Symfony conventions

06 Nov 16:11
Compare
Choose a tag to compare

See #16 and #17.

The old interface is deprecated and will be removed in the next version. This release is a transitional release to the new interface. New things will be developed on top of the new one and 0.3.0 allows you to migrate gradually to it.

Summary of some of the changes:

Old New
$transport->api() $transport->getApi()
$transport->api($api) $transport->setApi($api)
$api->token() $api->getToken()
$api->token($token) $api->setToken($token)
$api->headers() $api->getHeaders()
$api->is_secure() $api->isSecure()
$api->get_send_uri() $api->getSendUri()

and so on...

Calling the old methods would trigger an E_USER_DEPRECATED error. You could suppress it with something like error_reporting(E_ALL & ~E_USER_DEPRECATED).

0.2.0: Use https:// protocol

26 Sep 12:47
Compare
Choose a tag to compare

0.1.6: Improve tests structure

26 Sep 12:45
Compare
Choose a tag to compare

0.1.5: Throw Postmark exception with specific error code

19 Sep 13:08
Compare
Choose a tag to compare

See #8

Other changes:

  • PSR-2
  • Test against PHP 5.5 and 5.6

Add `multipart/alternative` content type

18 Jun 13:03
Compare
Choose a tag to compare

This makes it compatible with Laravel.

See #1.

Fix critical bug in email sending

11 Feb 08:38
Compare
Choose a tag to compare
0.1.3

Fix Postmrak email sending

0.1.2

10 Feb 11:35
Compare
Choose a tag to compare
allow , and " in emails

0.1.1

12 Sep 07:59
Compare
Choose a tag to compare
Add names support in the emails, fix sending plain text emails with a…

Initial Release

09 Sep 08:12
Compare
Choose a tag to compare
Add readme, copyrights, make it a proper transport

Added event handlers for the transport itself