Invite emails not sending

Hi @hugh,

the command should use -e instead of -v for all the environment variables.
So the docker command should be something like this:

sudo docker run -e BASEROW_PUBLIC_URL=http://[MY IP]
–name baserow
-d
–restart unless-stopped
-v baserow_data:/baserow/data
-e EMAIL_SMTP=True
-e EMAIL_SMTP_USE_TLS=True
-e EMAIL_SMTP_HOST=‘smtp.gmail.com’
-e EMAIL_SMTP_USER=’[my email address]’
-e EMAIL_SMTP_PORT=587
-e EMAIL_SMTP_PASSWORD=’[my app-specific email password]’
-p 80:80
-p 443:443
-p 587:587
baserow/baserow:1.14.0

Without -e, you’re not overriding the defaults so what you can see is the default behavior in the logs that prints the email message to the standard output.

Please ensure to use an app password as described here if you’re using Gmail as SMTP server: Sign in with App Passwords - Google Account Help

1 Like