Version 0.16.0
🔄 Automatic Update Notifications
Breaking Changes
MAILER_SMTP_FROM_EMAIL
is now used as the default forMAILER_SMTP_USER
when only
MAILER_SMTP_FROM_EMAIL
is set.
Before, the inverse was true (onlyMAILER_SMTP_USER
needed to be set and was used
as the default forMAILER_SMTP_FROM_EMAIL
).
This change was made to address the fact that the SMTP username might be confidential
and shouldn’t be accidentally exposed by using it as the FROM address in system emails.
If you are already setting both environment variables, you don’t need to change anything but if
you were only settingMAILER_SMTP_USER
, you need to update your configuration.
Fixes #356 (thanks @kevinam99 for implementing)
Added
- Information about new releases is now automatically fetched and displayed on a new "System info"
admin page. You can disable this by settingDISABLE_UPDATE_CHECKS=true
. - The log level can now be configured by setting
LOG_LEVEL
todebug
,info
, andwarning
.
Implements #360 (thanks @kevinam99) mjml_body
anhtml_body
are now included in the Campaign API responses
Fixed
- Segment queries with the
$not
operator (e.g.{"$not": {"data.foo": "bar"}}
)
now also correctly include entries where the queried data keys don't exist at all. - Fixed possible exception when removing "Reply To" setting from sender settings.
- Fixed Campaign API docs to include
json_body
as a map instead of a string.