Reset Password - SMTP is not working

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.

sorry my bad

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:

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

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.