mirror of
https://github.com/logto-io/logto.git
synced 2024-12-30 20:33:54 -05:00
54b62094c8
* feat(core): wrap aliyun direct mail connector * feat(core): remove copyfiles and reorganize files
25 lines
598 B
Markdown
25 lines
598 B
Markdown
```json
|
|
{
|
|
"accessKeyId": "<access-key-id>",
|
|
"accessKeySecret": "<access-key-secret>",
|
|
"accountName": "<verified-account-name>",
|
|
"fromAlias": "<connector-alias>",
|
|
"templates": [
|
|
{
|
|
"usageType": "SIGN_IN",
|
|
"subject": "<sign-in-template-subject>",
|
|
"content": "<sign-in-template-content>"
|
|
},
|
|
{
|
|
"usageType": "REGISTER",
|
|
"subject": "<register-template-subject>",
|
|
"content": "<register-template-content>"
|
|
},
|
|
{
|
|
"usageType": "TEST",
|
|
"subject": "<test-template-subject>",
|
|
"content": "<test-template-content>"
|
|
}
|
|
]
|
|
}
|
|
```
|