Skip to content

Releases: OpenBuildings/swiftmailer-filter

PHP version upgrade

14 Feb 09:57
de62949
Compare
Choose a tag to compare

Upgrade php version to ^7.1
Upgrade phpunit version to ^7
Fix unit tests

Added Filter interfaces

22 Aug 08:39
a9f49bc
Compare
Choose a tag to compare
  • Changed the way whitelisting and blacklisting work. Now you must use them like this:
new FilterPlugin([
            new WhiteListFilter(['some-site.com', 'me@email.com']),
            new BlacklistFilter(['blacklisted@some-site.com'])
])
  • You can now create your own custom filters as long as they implement Openbuildings\Swiftmailer\Filters\ FilterInterface

Major Refactor

22 Oct 22:02
Compare
Choose a tag to compare
  • Use PSR4
  • Use PSR2
  • Refactor for better code distribution
  • 100 test coverage

0.1.2: Fix for empty recipients

11 Aug 12:18
Compare
Choose a tag to compare
Some transports do not check for empty recipient lists.
This way no email will be sent if there are no people to send it to,
without throwing any exceptions

0.1.1

10 Sep 14:32
Compare
Choose a tag to compare
Fix error when no cc or bcc are set

Initial Release

09 Sep 08:15
Compare
Choose a tag to compare
0.1.0

Update docs