From b70bf4cadb1b4ca9b90447b8f4b9d94b0f0e36bc Mon Sep 17 00:00:00 2001 From: kasyap dharanikota <76957823+kasyap1234@users.noreply.github.com> Date: Thu, 18 Jul 2024 06:23:24 +0530 Subject: [PATCH] fix SMTP2GO configuration --- docs/self-hosting/configuration/envars.mdx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/self-hosting/configuration/envars.mdx b/docs/self-hosting/configuration/envars.mdx index 8719fa0e9..24ec3a372 100644 --- a/docs/self-hosting/configuration/envars.mdx +++ b/docs/self-hosting/configuration/envars.mdx @@ -332,10 +332,12 @@ SMTP_FROM_NAME=Infisical 1. Create an account and configure [SMTP2Go](https://www.smtp2go.com/) to send emails. 2. Turn on SMTP authentication ``` -SMTP server: mail.smtp2go.com -SMTP port: You can use one of the following ports: 2525, 80, 25, 8025, or 587 -Username: Your SMTP2GO account's SMTP username -Password: Your SMTP2GO account's SMTP password +SMTP_HOST=mail.smtp2go.com +SMTP_PORT=You can use one of the following ports: 2525, 80, 25, 8025, or 587 +SMTP_USERNAME=username #Your SMTP2GO account's SMTP username +SMTP_PASSWORD=password #Your SMTP2GO account's SMTP password +SMTP_FROM_ADDRESS=hey@example.com # your email address being used to send out emails +SMTP_FROM_NAME=Infisical ``` {" "}