Replies: 1 comment
-
|
Gmail SMTP with an app password should work, but there are a few SplitPro-specific things to check. First, if you are running the app in development mode, SplitPro intentionally does not send some emails. For sign-in emails it logs the sign-in link instead, and for invite emails it logs the invite instead of sending it. So check Second, make sure the other auth/email settings are enabled: NEXTAUTH_URL="https://your-public-url.example.com"
NEXTAUTH_SECRET="your-generated-secret"
FROM_EMAIL="mymail@gmail.com"
EMAIL_SERVER_HOST="smtp.gmail.com"
EMAIL_SERVER_PORT="587"
EMAIL_SERVER_USER="mymail@gmail.com"
EMAIL_SERVER_PASSWORD="your-16-character-gmail-app-password"
DISABLE_EMAIL_SIGNUP=falseIf you are testing invites, also set: ENABLE_SENDING_INVITES=trueFor Gmail itself, make sure 2-Step Verification is enabled and that If Docker shows nothing, I would also verify the env vars reached the app container, for example by checking the running container environment and making sure you are looking at the app container logs, not only the database/proxy logs. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
i have setup the following
but i dont get any email nor any messages in the docker log.
Am i missing something?
Beta Was this translation helpful? Give feedback.
All reactions