Skip to content
Mia Winter edited this page Mar 14, 2024 · 1 revision

Configuring Email

Wave may send user related mails every now and then, to confirm an account, reset a password, etc. In order to support that, Wave needs to have a way to send Emails, currently SMTP is supported.

SMTP

The following configuration is required for Wave to connect to a smtp server (formatted in YAML for brevity).

Email:
  SenderEmail: [email protected]
  SenderName: Wave
  ServiceEmail: [email protected] # used in various places, including email newsletter ListId Header
  Smtp:
    Live:
      Host: smtp.example.com
      Port: 25
      Username: user
      Password: password
      Ssl: true

Username and Password are optional if your server does not require it, and Ssl is true by default, only set it to false if you really need to, keeping security in mind.

Clone this wiki locally