Skip to content

v0.7.1

Latest
Compare
Choose a tag to compare
@drujensen drujensen released this 30 May 02:30
· 3 commits to master since this release

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