Skip to content

Releases: Webador/SlmMail

More Sparkpost features

12 Aug 09:52
687c848
Compare
Choose a tag to compare
  • This release brings a lot of additional sparkpost features. Thanks @nickvanderveeken for the work!

PHP 8 support

30 Jun 07:12
Compare
Choose a tag to compare

This support brings PHP8 support. Thanks to @snapshotpl for that 🙏

Change for SES users

We no longer use https://github.com/aws/aws-sdk-php-zf2, as that repo was not maintained anymore. Instead, you should now require aws-sdk-php and configure config/slm_mail.ses.local.php.dist.

PHP 8 support

29 Jun 12:46
a53aafa
Compare
Choose a tag to compare
PHP 8 support Pre-release
Pre-release

This support brings PHP8 support. Thanks to @snapshotpl for that 🙏

Change for SES users

We no longer use https://github.com/aws/aws-sdk-php-zf2, as that repo was not maintained anymore. Instead, you should now require aws-sdk-php and configure config/slm_mail.ses.local.php.dist.

v3.4: Merge pull request #141 from koenkivits/fix/mandrill-http-exception

19 May 07:51
3ba8b0b
Compare
Choose a tag to compare

v3.3: Merge pull request #139 from JouwWeb/feature/weaken-options-type

01 Jul 12:23
75c050b
Compare
Choose a tag to compare
  • [BUGFIX] Allow setting more complex options on Mandrill and MailGun message types.

v3.2: Merge pull request #138 from snapshotpl/error-details

22 Jun 06:58
1a231b3
Compare
Choose a tag to compare

v3.1: Merge pull request #137 from snapshotpl/patch-2

08 Feb 10:55
01f7c57
Compare
Choose a tag to compare

MailGun service will not follow the attachments disposition.

Note this could be a breaking change: before all attachments were attached as attachment. So if you pass along an attachment with an inline disposition, it will not appear inline. As before it would simply be attached.

v3.0: Merge pull request #134 from roelvanduijnhoven/feature/mezzio

03 Feb 14:07
3970a7a
Compare
Choose a tag to compare

This new major release features:

  • We now target Laminas instead of Zend Framework.
  • We now target PHP 7.2 and above.
  • Types were introduced. These types are identical to the DocTypes that were present before. However note that the new types could be too strict or wrong. Please raise an issue if that is the case.
  • Repository moved to JouwWeb organization.

Deprecation:

  • PHP 7.1 and below are no longer working. Use the 2.x branch for this.
  • Zend Framework is no longer supported. Use the 2.x branch for this.
  • Types were introduced to almost all methods. These types are identical to the PHPDocs, so it should not break your code in theory. However there is a possibility that you did pass other stuff to those methods.

This first release is an alpha build.

v3.0-alpha: Merge pull request #132 from roelvanduijnhoven/feature/phpcs

30 Jan 11:45
ab42007
Compare
Choose a tag to compare

This new major release features:

  • We now target Laminas instead of Zend Framework.
  • We now target PHP 7.2 and above.
  • Types were introduced. These types are identical to the DocTypes that were present before. However note that the new types could be too strict or wrong. Please raise an issue if that is the case.
  • Repository moved to JouwWeb organization.

Deprecation:

  • PHP 7.1 and below are no longer working. Use the 2.x branch for this.
  • Zend Framework is no longer supported. Use the 2.x branch for this.
  • Types were introduced to almost all methods. These types are identical to the PHPDocs, so it should not break your code in theory. However there is a possibility that you did pass other stuff to those methods.

This first release is an alpha build.

v2.1.2

15 May 19:58
Compare
Choose a tag to compare
  • ElasticEmail API endpoint /send tell us to use POST method instead of GET. So, when sending big html messages via GET it returns 414 error. Fixed to use POST in the method send of the ElasticEmailService.php