diff --git a/app/views/docs/email-delivery.phtml b/app/views/docs/email-delivery.phtml index 8290c416d..c70c9226a 100644 --- a/app/views/docs/email-delivery.phtml +++ b/app/views/docs/email-delivery.phtml @@ -12,13 +12,13 @@

_APP_SMTP_PORT - SMTP server TCP port. Empty by default.

-

_APP_SMTP_SECURE - SMTP secure connection protocol. Empty by default, change to ‘tls’ if running on a secure connection.

+

_APP_SMTP_SECURE - SMTP secure connection protocol. Empty by default, change to 'tls' if running on a secure connection. Valid values are empty, 'tls', and 'ssl'.

_APP_SMTP_USERNAME - SMTP server user name. Empty by default.

_APP_SMTP_PASSWORD - SMTP server user password. Empty by default.

-

_APP_SYSTEM_EMAIL_ADDRESS - Email address used for sending the emails. "team@appwrite.io" by default.

+

_APP_SYSTEM_EMAIL_ADDRESS - Configured sender email address, "team@appwrite.io" by default. This is the email address seen by recipients.

Here's a sample configuration if you're using SendGrid as your SMTP provider.

@@ -27,7 +27,8 @@ _APP_SMTP_PORT=587 _APP_SMTP_SECURE=tls _APP_SMTP_USERNAME=YOUR-SMTP-USERNAME -_APP_SMTP_PASSWORD=YOUR-SMTP-PASSWORD +_APP_SMTP_PASSWORD=YOUR-SMTP-PASSWORD +_APP_SYSTEM_EMAIL_ADDRESS=YOUR-SENDER-EMAIL

Restart Your Appwrite Server