Hi Everyone,
I recently spun up my Joplin server environment on my Synology NAS with Docker containers. However, I am in the process of configuring the email settings for my server but I am having some issues where I am not receiving any emails I sent from my Joplin server.
I am not sure how to start troubleshooting this issue; is there a command I can run to test sending SMTP messages from my server or are there any specific logs I could look at?
These are the current settings that I have added to my .env file:
- MAILER_ENABLED=1
- MAILER_HOST=smtp .sendgrid.net
- MAILER_PORT=587
- MAILER_SECURITY=tls
- MAILER_AUTH_USER=apikey
- MAILER_AUTH_PASSWORD=(my password)
- MAILER_NOREPLY_NAME=JoplinServer
- MAILER_NOREPLY_EMAIL=(my email)
Since I am now using port 587 on the Joplin server, I exposed that port on the container itself by modify my run command:
- docker run --name joplin01 --env-file .env -p 22300:22300 -p 587:587 --net=joplin --restart always -d joplin/server
Any ideas?
Thanks for all the help.