From 50c5cc16427503a5b8ba4242a37494f723da5024 Mon Sep 17 00:00:00 2001 From: Oleksandr Hrab Date: Tue, 30 Jul 2024 11:12:07 +0300 Subject: [PATCH] feat: add documentation about smtp server --- .../prerequisites/Infrastructure.md | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/launch-platform/self-hosted/installing-on-an-existing-cluster/prerequisites/Infrastructure.md b/docs/launch-platform/self-hosted/installing-on-an-existing-cluster/prerequisites/Infrastructure.md index b47dc569..15e12469 100644 --- a/docs/launch-platform/self-hosted/installing-on-an-existing-cluster/prerequisites/Infrastructure.md +++ b/docs/launch-platform/self-hosted/installing-on-an-existing-cluster/prerequisites/Infrastructure.md @@ -280,6 +280,28 @@ observability: enabled: true ``` +## SMTP Server + +An SMTP server is required to send emails, such as invitation emails, from the BTP platform. + +### A typical set of parameters you should collect: + +- `host`: the hostname of the SMTP server +- `port`: the port of the SMTP server +- `username`: the username for the SMTP server +- `password`: the password for the SMTP server +- `fromAddress`: the email address that will appear in the 'from' field of the emails sent by the BTP platform + +[In your values file](/docs/launch-platform/self-hosted/installing-on-an-existing-cluster/run-the-Installation/) + +```yaml +internal: + email: + enabled: true + from: "fromAddress" + server: "smtps://username:password@host:port" +``` + ## Kubernetes Target Clusters To deploy your blockchain nodes and additional services with the SettleMint Blockchain Transformation Platform (BTP), it's crucial to correctly set up your Kubernetes clusters. Here is a refined explanation that captures all the essential details: