Mail 24.3
Version | 24.3 |
---|---|
Release Date | 01 November 2024 |
Changes
New features
Added API support for adding whitelisted domains
API support has been added for adding and updating whitelisted domains. See the new endpoints further below.
Added API support for controlling mail sending modes
API support has been added for updating the mail sending modes. Be aware that updating these settings, changes the mail sending capabilities. Currently, Bizzkit Mail supports 3 different sending modes:
-
Test: Limited email sending capabilities - mails are only sent out to domains which have been whitelisted. See the endpoints below to add a new whitelisted domain.
-
Production: Fully functional email sending capabilities. Emails are sent out whether they are whitelisted or not.
-
Simulation: Emails are not actually sent. Sending is only simulated.
New endpoints
Endpoint | Comment |
---|---|
POST /api/whitelisted-domains/ | Create a new whitelisted domain. When sending-mode is set to 'Test', mails can only be sent to whitelisted domains. |
GET /api/whitelisted-domains/ | |
GET /api/whitelisted-domains/{id} | |
PUT /api/whitelisted-domains/{id} | |
DELETE /api/whitelisted-domains/{id} | |
GET /api/settings/mail-sending | |
PUT /api/settings/mail-sending | Update the sending-mode. Valid modes are Test, Simulation and Production. |
Upgrade Instructions
If you have custom whitelisted domains follow these instructions after you have upgraded:
-
Add your whitelisted domain using the endpoint /api/whitelisted-domains/.
-
Update the mail sending mode to Test using the endpoint /api/settings/mail-sending.
The default mail sending mode is set to Production. If you have been running a different sending mode than production you should use the endpoint /api/settings/mail-sending to set it to your sending mode.
If you currently don't have any custom whitelisted domains and your mail-sending mode is set to Production, nothing should be done on your end.
Enhancements
Email attachment limit increase
The current limit for email attachments has increased from 2MB to 10MB.