Introduction
...
Code Block | ||||
---|---|---|---|---|
| ||||
"commonFields" : {
"mail" : {
// to control the smtp configuration
}
}
"urac" : {
// this object to control the links in the emails
"links": {...}
// this object to control the content of the emails
"mail": {
"join": {... //this is the join email content configuration}
"forgotPassword": {... //}
}
}
"mail": {
"from": 'me@localhost.com',
"transport": {
"type": "sendmail",
"options": {}
}
} |
...
Name | Local Configuration (Default) config.js | Registry Configuration (Per Environment) req.soajs.registry | Tenant Configuration (Per Tenant Per Environment) | |
---|---|---|---|---|
Settings | Custom | |||
pinConfiguration | ✓ | ✓ | ✓ | |
model¹ | ✓ | ✓ | ||
hashIterations | ✓ | ✓ | ||
seedLength | ✓ | ✓ |
model¹: We currently only support mongo models.
...