mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
f8710e147d
* feat(connector-smtp): add smtp connector * feat(connector-smtp): fix UTs
33 lines
964 B
JSON
33 lines
964 B
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.",
|
|
"subject": "Logto Test with SMTP",
|
|
"usageType": "Test"
|
|
},
|
|
{
|
|
"contentType": "text/plain",
|
|
"content": "This is for sign-in purposes only.",
|
|
"subject": "Logto Sign In with SMTP",
|
|
"usageType": "SignIn"
|
|
},
|
|
{
|
|
"contentType": "text/plain",
|
|
"content": "This is for register purposes only.",
|
|
"subject": "Logto Register with SMTP",
|
|
"usageType": "Register"
|
|
},
|
|
{
|
|
"contentType": "text/plain",
|
|
"content": "This is for forgot-password purposes only.",
|
|
"subject": "Logto Forgot Password with SMTP",
|
|
"usageType": "ForgotPassword"
|
|
}
|
|
]
|
|
}
|