Hi,
I’m trying to get a reset email on my Self hosted app.
I tried Gmail and Sendgrid SMTP but Im getting the same error.
My SMTP setting:
N8N_EMAIL_MODE=smtp
N8N_SMTP_HOST=smtp.sendgrid.net
N8N_SMTP_PORT=587
N8N_SMTP_USER=apikey
N8N_SMTP_PASS=SG.xxxxxxxxxxxxxxxxxx
N8N_SMTP_SENDER=Email address.
N8N_SMTP_SSL=false
N8N_USER_MANAGEMENT_DISABLED=false
Im using Version 1.90.2 with Docker on digital Ocean.
-Thank you!
try this, if its self hosted, it would work on digital ocean as well
Thank you!
But I need a fix to the reset email option not to find the password.
did you check the port is not blocked by digital ocean ?
did you configured docker to map the port ?
Maybe one of those 2 topics can help you:
Hi @Dwayne_Taylor ,
I’ve tried reproducing your problem on [email protected] started with docker run -it --rm --name n8n -v ./n8n_user_management_test:/home/node/.n8n -p 5678:5678 n8nio/n8n:0.206.0, but this worked as expected. After setting up user management, I am seeing this login screen:
[image]
I am then running docker exec -it -u node n8n n8n user-management:reset:
[image]
Lastly, I stopped and restarted the n8n container by pressing Ctrl-C (to stop it) and running docker run -it --rm --na…
Found the issue, my VPS cloud provider had port 465 blocked and my SMTP doesn’t work on port 587. They uncloked port 465 and emails started going out. I have my docker compose file SMTP port set to 465 and SSL to true, all working.
Thanks for your help, all.
1 Like
Thank you all, I found the solution that no one talks about.
In Digital Ocean they block the port 587 because of spam issues.
If you want to get email you need to use 2525 port (worked for me with Sendgrid).
Also, add this at the bottom of the nano .env file below the SMTP: N8N_USER_MANAGEMENT_DISABLED=false
1 Like
system
Closed
May 14, 2025, 11:26am
7
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.