From 91d7b586378e2b1faa46c5b24fa5f7095953f858 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Tue, 7 Feb 2023 17:56:15 +0000 Subject: [PATCH] Add SMTP_SECURE to env file and update README --- README.md | 7 ++++++- config.env | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 17b4cca..a9963fd 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,12 @@ In the root of this project you will find a file called `config.env`. Open this - Set `SUPPORT_EMAIL` - This will appear as the support email in emails sent out by your instance. -- Configure `SMTP_HOST`, `SMTP_PORT`, `SMTP_USER` and `SMTP_PWD` with the details of your SMTP server. +- Configure your SMTP server + - `SMTP_HOST` - The host address of your SMTP server + - `SMTP_PORT` - The port of your SMTP server + - `SMTP_SECURE` - Set to "true" if SSL is enabled for your SMTP connection + - `SMTP_USER` - The username (if auth is enabled) + - `SMTP_PWD` - The password (if auth is enabled) ### Start the server diff --git a/config.env b/config.env index c8d9dbe..5a48698 100644 --- a/config.env +++ b/config.env @@ -3,5 +3,6 @@ NEXT_PUBLIC_BASE_URL=replace-me SUPPORT_EMAIL=replace-me SMTP_HOST=replace-me SMTP_PORT=replace-me +SMTP_SECURE=false SMTP_USER=replace-me SMTP_PWD=replace-me