Skip to content

Releases: amberframework/quartz-mailer

v0.7.1

30 May 02:30
Compare
Choose a tag to compare

This change has breaking changes:

Quartz mailer has been updated to use email 6.0 which supports several new TLS options. The data type for use_tls configuration option has changed from a boolean to an enum with 3 options. Update the config:

# replace boolean value
  c.use_tls = true || false
# with enum value
  c.use_tls = EMail::Client::TLSMode::NONE
# or
  c.use_tls = EMail::Client::TLSMode::STARTTLS
# or
  c.use_tls = EMail::Client::TLSMode::SMTPS

v0.7.0

27 May 21:38
Compare
Choose a tag to compare

v0.6.0

24 Mar 20:35
Compare
Choose a tag to compare

Update kilt from 0.4.0 to 0.6.0 by @andrewc910

v0.5.4

18 Feb 16:21
Compare
Choose a tag to compare

d036e73 Update crystal-email version from 0.3 to 0.4 (#27) by @d1ceward

v0.5.3

12 Jan 16:49
Compare
Choose a tag to compare

Add remove_*_recipient methods (#24) @westonganger
Fix cc & bcc with Quartz::Composer (#22) @westonganger
Improve Instructions for to API (#21) @westonganger
Fix Typo in Readme (#20) @westonganger

v0.5.2

15 Oct 15:23
Compare
Choose a tag to compare

#19 Added openssl_verification_mode support tls connections - @zaidakram
#17 Update license @faustinoaq

v0.5.1

09 Feb 20:50
f6dd7d7
Compare
Choose a tag to compare
Merge pull request #16 from robacarp/version_0.5.1

Bump version to 0.5.1 in prep for release

v0.5.0

31 Jan 22:33
Compare
Choose a tag to compare

1ffcee7 Merge pull request #11 from robacarp/upgrade_mail_engine
a244a18 Merge pull request #13 from robacarp/upgrade_email_version

New Features:

  • Quartz is now backed by arcage/crystal-email.
  • Mailers can now send messages in both text and html.
  • Improved DSL with less super calls required.
  • Mail is now sent asynchronously.

Breaking Changes:

  • Mailers now inherit from Quartz::Composer instead of Quartz::Mailer.
  • Mailers should not implement the #deliver method. Code which used to live in the deliver method should now live in #initialize. Consult the readme for an example.

v0.3.0

04 Dec 04:43
5c727cd
Compare
Choose a tag to compare
  • Update dependencies
  • Fix dependency issue #183

v0.2.1

08 Nov 22:58
dd0670d
Compare
Choose a tag to compare