Getting started Configuration Email
Tuesday, October 27, 2020 11:14 AMGraphileon can send emails as part of the user management/registration process,
as well as by using the Email Function.
For either of these functionalities to work, a mail server must be configured in a mailServer
object in config.json.
Graphileon uses NodeMailer for sending emails.
The mailServer
config follows the schema as described in their documentation.
Example mailServer configuration:
"mailServer": {
"host": "smtp.example.com",
"port": 465,
"secure": true,
"auth": {
"user": "user@example.com",
"pass": "userpasswd"
},
"mailAddress": "no-reply@example.com"
},