mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
5fc2fc6ff7
* chore(connectors): config template md files to json files * chore(connectors): fix path of reading config-template files
24 lines
672 B
JSON
24 lines
672 B
JSON
{
|
|
"apiKey": "<api-key>",
|
|
"fromEmail": "noreply@logto.test.io",
|
|
"templates": [
|
|
{
|
|
"usageType": "SignIn",
|
|
"type": "text/plain",
|
|
"subject": "Logto SignIn Template",
|
|
"content": "This is for sign-in purposes only. Your passcode is {{code}}."
|
|
},
|
|
{
|
|
"usageType": "Register",
|
|
"type": "text/plain",
|
|
"subject": "Logto Register Template",
|
|
"content": "This is for registering purposes only. Your passcode is {{code}}."
|
|
},
|
|
{
|
|
"usageType": "Test",
|
|
"type": "text/plain",
|
|
"subject": "Logto Test Template",
|
|
"content": "This is for testing purposes only. Your passcode is {{code}}."
|
|
}
|
|
]
|
|
}
|