Working SMTP settings with Siteground

I had some trouble figuring out the proper settings in my docker stack that would get email to work/send with the little email server I set up specifically for my Baserow install inside Siteground but the below works for me … ports 587 and specifying TLS. Finally the message came through!

EMAIL_SMTP: 'TRUE'
EMAIL_SMTP_HOST: 'us211.siteground.us'
EMAIL_SMTP_PORT: 587
EMAIL_SMTP_USE_TLS: 'TRUE'
EMAIL_SMTP_USER: 'db@mydomain.com''
EMAIL_SMTP_PASSWORD: 'mypassword'
FROM_EMAIL: 'db@mydomain.com'

Hello @bfranklin, thanks for sharing this! Your discovery will definitely be useful for other users possibly facing similar challenges :raised_hands: