deck9 / input

A privacy-focused, no-code, open-source form builder designed for simplicity and brand consistency.
https://getinput.co
GNU Affero General Public License v3.0
162 stars 27 forks source link

I'm not recieving team invitation mails! #133

Closed dataprolet closed 3 months ago

dataprolet commented 4 months ago

I'm running Input behind a reverse proxy using docker, but I can't invite other members to join my team, because they don't receive the invitation e-mail.

The container's log is showing that a mail was sent, but I never received it. Do I have to manually set up a mail server or is this intended to work out-of-the-box?

PhilReinking commented 4 months ago

Hey @dataprolet

Sorry, this is right now not documented well enough. You need to provide your own SMTP service to send emails.

Currently, these are the environment variables used for this:

### Mail Config
# MAIL_MAILER=smtp
# MAIL_HOST=
# MAIL_USERNAME=
# MAIL_PASSWORD=
# MAIL_PORT=1025
# MAIL_ENCRYPTION=tls

You can find more settings in the .env.prod.example file.

Please let me know if this solves the issue for you!

PhilReinking commented 4 months ago

added documentation to the Readme right now

dataprolet commented 3 months ago

Thanks, will try.