Passbolt not sending email

I’m currently using passbolt docker and running it in my localhost:9000.
I’m configuring the email configuration

Here’s the config inside passbolt.env
EMAIL_TRANSPORT_DEFAULT_CLASS_NAME=Smtp
EMAIL_DEFAULT_FROM=[gmail email]
EMAIL_DEFAULT_TRANSPORT=Smtp
EMAIL_TRANSPORT_DEFAULT_HOST=smtp.gmail.com
EMAIL_TRANSPORT_DEFAULT_PORT=587
EMAIL_TRANSPORT_DEFUALT_USERNAME= [gmail email]
EMAIL_TRANSPORT_DEFAULT_PASSWORD= [gmail password]
EMAIL_TRANSPORT_DEFAULT_TLS=true

When I’m accessing the passbolt on web, and I try to recover my account it returns
Email sent! Please check your spam folder if you do not hear from us after a while.
but I check i didn’t receive any email

I tried stopping / starting the passbolt docker using

docker compose down
docker compose up

Hello @allenchun,

This article might help you to solve your issue: https://help.passbolt.com/faq/hosting/why-email-not-sent
It is possible to send a test email via the command line and get a detailed output.

su -s /bin/bash -c "./bin/cake passbolt send_test_email --recipient=youremail@domain.com" www-data

Thanks it’s already working. I just stop and up the docker image