Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions app/views/docs/email-delivery.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@

<p><b>_APP_SMTP_PORT</b> - SMTP server TCP port. Empty by default.</p>

<p><b>_APP_SMTP_SECURE</b> - SMTP secure connection protocol. Empty by default, change to tls if running on a secure connection.</p>
<p><b>_APP_SMTP_SECURE</b> - SMTP secure connection protocol. Empty by default, change to 'tls' if running on a secure connection.</p>

<p><b>_APP_SMTP_USERNAME</b> - SMTP server user name. Empty by default.</p>

<p><b>_APP_SMTP_PASSWORD</b> - SMTP server user password. Empty by default.</p>

<p><b>_APP_SYSTEM_EMAIL_ADDRESS</b> - Email address used for sending the emails. "[email protected]" by default.</p>
<p><b>_APP_SYSTEM_EMAIL_ADDRESS</b> - Configured sender email address, "[email protected]" by default. This is the email address seen by recipients.</p>

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

Expand All @@ -27,7 +27,8 @@
_APP_SMTP_PORT=587
_APP_SMTP_SECURE=tls
_APP_SMTP_USERNAME=YOUR-SMTP-USERNAME
_APP_SMTP_PASSWORD=YOUR-SMTP-PASSWORD</code></pre>
_APP_SMTP_PASSWORD=YOUR-SMTP-PASSWORD
_APP_SYSTEM_EMAIL_ADDRESS=YOUR-SENDER-EMAIL</code></pre>
</div>

<h2><a href="/docs/email-delivery#restartServer" id="restartServer">Restart Your Appwrite Server</a></h2>
Expand Down