1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-20 05:19:38 +02:00
AdventureLog/documentation/docs/Configuration/email_backend.md

520 B

sidebar_position
2

Change Email Backend

To change the email backend, you can set the following variable in your docker-compose.yml under the server service:

Using Console (default)

environment:
  - EMAIL_BACKEND='console'

With SMTP

environment:
  - EMAIL_BACKEND='email'
  - EMAIL_HOST='smtp.gmail.com'
  - EMAIL_USE_TLS=False
  - EMAIL_PORT=587
  - EMAIL_USE_SSL=True
  - EMAIL_HOST_USER='user'
  - EMAIL_HOST_PASSWORD='password'
  - DEFAULT_FROM_EMAIL='user@example.com'