mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
b887655827
* feat(connector-sendgrid-mail): add SendGrid Mail connector * feat(core): add SendGrid Mail connector to initializer and fix usageType
25 lines
597 B
Markdown
25 lines
597 B
Markdown
```json
|
|
{
|
|
"accessKeyId": "<access-key-id>",
|
|
"accessKeySecret": "<access-key-secret>",
|
|
"accountName": "<verified-account-name>",
|
|
"fromAlias": "<connector-alias>",
|
|
"templates": [
|
|
{
|
|
"usageType": "SignIn",
|
|
"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>"
|
|
}
|
|
]
|
|
}
|
|
```
|