From d17ffdbc835b786c12702311849ee31f401aac23 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Tue, 2 Jan 2024 22:30:17 +0530 Subject: [PATCH] docs(ui.md): update ui docs to for smtp server hosting --- docs/my-website/docs/proxy/ui.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/my-website/docs/proxy/ui.md b/docs/my-website/docs/proxy/ui.md index 6f3f3bb61..ca056e8a5 100644 --- a/docs/my-website/docs/proxy/ui.md +++ b/docs/my-website/docs/proxy/ui.md @@ -14,15 +14,17 @@ This is in beta, so things may change. If you have feedback, [let us know](https Requirements: -- Need to a [Resend](https://resend.com/) account for sending emails +- Need to a SMTP server connection to send emails (e.g. [Resend](https://resend.com/docs/send-with-smtp)) [**See code**](https://github.com/BerriAI/litellm/blob/61cd800b9ffbb02c286481d2056b65c7fb5447bf/litellm/proxy/proxy_server.py#L1782) -### Step 1. Save Resend keys +### Step 1. Save SMTP server credentials ```env -export RESEND_API_KEY="my-resend-api-key" -export RESEND_API_EMAIL="my-resend-sending-email" # e.g. krrish@berri.ai +export SMTP_HOST="my-smtp-host" +export SMTP_USERNAME="my-smtp-password" +export SMTP_PASSWORD="my-smtp-password" +export SMTP_SENDER_EMAIL="krrish@berri.ai" ``` ### Step 2. Enable user auth