Skip to main content

Email

Releval uses SMTP to send emails for user invitations, email confirmations, and password resets.

SMTP Settings

VariableDefaultDescription
Smtp__Host127.0.0.1SMTP server hostname
Smtp__Port25SMTP server port
Smtp__Username(none)SMTP authentication username
Smtp__Password(none)SMTP authentication password
Smtp__SecureSocketOptionsAutoTLS security mode

Secure Socket Options

ValueDescription
AutoAutomatically detect the best security mode
NoneNo encryption
StartTlsUpgrade to TLS after connecting (port 587)
StartTlsWhenAvailableUse STARTTLS if the server supports it
SslOnConnectConnect with TLS immediately (port 465)

Example

environment:
- Smtp__Host=smtp.gmail.com
- Smtp__Port=587
- Smtp__Username=noreply@example.com
- Smtp__Password=your-app-password
- Smtp__SecureSocketOptions=StartTls
Note

Without a configured SMTP server, email-dependent features (user invitations, password resets, email confirmations) will not function. Users can still be created via the default admin account when CreateTablesOnStartup=true.