0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/connector-smtp/docs/config-template.json
2022-07-12 07:57:26 +00:00

33 lines
1.1 KiB
JSON

{
"host": "<test.smtp.host>",
"port": 80,
"password": "<password>",
"username": "<username>",
"fromEmail": "<notice@test.smtp>",
"templates": [
{
"contentType": "text/plain",
"content": "This is for testing purposes only. Your verification code is {{code}}.",
"subject": "Logto Test with SMTP",
"usageType": "Test"
},
{
"contentType": "text/plain",
"content": "This is for sign-in purposes only. Your verification code is {{code}}.",
"subject": "Logto Sign In with SMTP",
"usageType": "SignIn"
},
{
"contentType": "text/plain",
"content": "This is for register purposes only. Your verification code is {{code}}.",
"subject": "Logto Register with SMTP",
"usageType": "Register"
},
{
"contentType": "text/plain",
"content": "This is for forgot-password purposes only. Your verification code is {{code}}.",
"subject": "Logto Forgot Password with SMTP",
"usageType": "ForgotPassword"
}
]
}