From 67b3aea3f6aabade3fe61c7d0081efd8e8724909 Mon Sep 17 00:00:00 2001 From: wangsijie Date: Sun, 26 Jan 2025 10:06:55 +0800 Subject: [PATCH] chore: add changeset for http email (#6604) --- .changeset/blue-flowers-rule.md | 7 +++++++ .../console/src/components/CreateConnectorForm/index.tsx | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/blue-flowers-rule.md diff --git a/.changeset/blue-flowers-rule.md b/.changeset/blue-flowers-rule.md new file mode 100644 index 00000000000..f34043fd95a --- /dev/null +++ b/.changeset/blue-flowers-rule.md @@ -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. diff --git a/packages/console/src/components/CreateConnectorForm/index.tsx b/packages/console/src/components/CreateConnectorForm/index.tsx index decaf2f999c..3a1162a1179 100644 --- a/packages/console/src/components/CreateConnectorForm/index.tsx +++ b/packages/console/src/components/CreateConnectorForm/index.tsx @@ -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') );