mirror of
https://github.com/logto-io/logto.git
synced 2025-02-03 21:48:55 -05:00
chore: add changeset for http email (#6604)
This commit is contained in:
parent
325fdf84f1
commit
67b3aea3f6
2 changed files with 7 additions and 2 deletions
7
.changeset/blue-flowers-rule.md
Normal file
7
.changeset/blue-flowers-rule.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
"@logto/connector-http-email": minor
|
||||
---
|
||||
|
||||
add HTTP email connector
|
||||
|
||||
The HTTP email connector allows you to send emails via HTTP call. To use the HTTP email connector, you'll need to have your own email service that expose an HTTP API for sending emails. Logto will call this API when it needs to send an email. For example, when a user registers, Logto will call the HTTP API to send a verification email.
|
|
@ -52,8 +52,6 @@ function CreateConnectorForm({ onClose, isOpen: isFormOpen, type }: Props) {
|
|||
// Hide the entrance of adding SAML social connectors, users should go to Enterprise SSO if they want to use SAML.
|
||||
// Should not remove the SAML factory from GET /connector-factories API, since that could break the existing SAML connectors.
|
||||
.filter(({ id }) => id !== 'saml')
|
||||
// Hide the entrance of adding HTTP Email connector
|
||||
.filter(({ id }) => id !== 'http-email')
|
||||
// Hide the entrance of adding Vonage SMS connector
|
||||
.filter(({ id }) => id !== 'vonage-sms')
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue