Enhancements
- Resend functionality is replaced with Generic SMTP. (#61)
For current Resend users, it's still supported as is, but will be deprecated. In .env, replace
RESEND_API_KEY=
RESEND_FROM=
RESEND_CONTACT_EMAIL=
with
EMAIL_SERVER_USER=resend
# The value of RESEND_API_KEY
EMAIL_SERVER_PASSWORD=${RESEND_API_KEY}
EMAIL_SERVER_HOST=smtp.resend.com
EMAIL_SERVER_PORT=587
# The value of RESEND_FROM
EMAIL_FROM=${RESEND_FROM}
# The value of RESEND_CONTACT_EMAIL
EMAIL_CONTACT_EMAIL=${RESEND_CONTACT_EMAIL}
.env.example
file is updated accordingly.
-
Wiki pages are created for better readability.
-
Readme is updated to use the new Wiki pages. Screenshots are updated. (d8f0483)
Fixes
-
Reports page link bug is fixed. (c578ea5)
-
Search text check bug is fixed. (139368a)
-
Missing timezone support in until date is fixed. (7ed5e61)
-
Next notification date error with completed subscription bug is fixed. (70b4d1a)
-
Wrong variable creating with setup script is fixed. (30575ad)
-
Package updates. (#62)
-
Node version incremented with Docker. (0e6e921)
Full Changelog: v1.3.1...v1.4.0