1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 21:09:37 +02:00
AdventureLog/documentation/docs/configuration/email.md
Sean Morley b4496508dd
Korean i18n (#503)
* Update email.md

Removing the single quotes allow SMTP to work -- it did not work otherwise. Also, [Google recommends TLS over SSL](https://support.google.com/a/answer/2520500?sjid=7564827219172741277-NA)

* Update immich_integration.md

Added the /api to the example URL for the Immich server.

* Add Korean language support to Navbar and layout

* chore: Korean translation (#502)

* correct ko translation at Navbar.svelte

* correct ko.json

correct ko.json::adventures

auto commit

auto commit

auto commit

auto commit

auto commit

adventures

collection

dashboard

home

immich

immich

map

navbar

auto commit

notes

profile

recommendations

settings

share

transportations

auto commit

worldtravel

polishing

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

---------

Co-authored-by: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com>
Co-authored-by: motox986 <49492476+motox986@users.noreply.github.com>
Co-authored-by: Seongjun Ji <metalg0su@gmail.com>
2025-02-17 10:32:18 -05:00

821 B

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=True
  - EMAIL_PORT=587
  - EMAIL_USE_SSL=False
  - EMAIL_HOST_USER=user
  - EMAIL_HOST_PASSWORD=password
  - DEFAULT_FROM_EMAIL=user@example.com

Customizing Emails

By default, the email will display [example.com] in the subject. You can customize this in the admin site.

  1. Go to the admin site (serverurl/admin)
  2. Click on Sites
  3. Click on first site, it will probably be example.com
  4. Change the Domain name and Display name to your desired values
  5. Click Save