diff --git a/docs/my-website/docs/proxy/config_settings.md b/docs/my-website/docs/proxy/config_settings.md index 52757b846d3..0eccf7a758d 100644 --- a/docs/my-website/docs/proxy/config_settings.md +++ b/docs/my-website/docs/proxy/config_settings.md @@ -818,6 +818,8 @@ router_settings: | SMTP_SENDER_LOGO | Logo used in emails sent via SMTP | SMTP_TLS | Flag to enable or disable TLS for SMTP connections | SMTP_USERNAME | Username for SMTP authentication (do not set if SMTP does not require auth) +| SENDGRID_API_KEY | API key for SendGrid email service +| SENDGRID_SENDER_EMAIL | Email address used as the sender in SendGrid email transactions | SPEND_LOGS_URL | URL for retrieving spend logs | SPEND_LOG_CLEANUP_BATCH_SIZE | Number of logs deleted per batch during cleanup. Default is 1000 | SSL_CERTIFICATE | Path to the SSL certificate file diff --git a/docs/my-website/docs/proxy/email.md b/docs/my-website/docs/proxy/email.md index da8fc57deea..e50cc47f5d5 100644 --- a/docs/my-website/docs/proxy/email.md +++ b/docs/my-website/docs/proxy/email.md @@ -68,6 +68,23 @@ litellm_settings: callbacks: ["resend_email"] ``` + + + +Add `sendgrid_email` to your proxy config.yaml under `litellm_settings` + +set the following env variables + +```shell showLineNumbers +SENDGRID_API_KEY="SG.1234" +SENDGRID_SENDER_EMAIL="notifications@your-domain.com" +``` + +```yaml showLineNumbers title="proxy_config.yaml" +litellm_settings: + callbacks: ["sendgrid_email"] +``` +