diff --git a/litellm/integrations/email_alerting.py b/litellm/integrations/email_alerting.py index 0a959433e1..434efb63b0 100644 --- a/litellm/integrations/email_alerting.py +++ b/litellm/integrations/email_alerting.py @@ -107,9 +107,9 @@ async def send_team_budget_alert(webhook_event: WebhookEvent) -> bool: ) email_html_content = f""" - LiteLLM Logo
+ LiteLLM Logo


- Budget Crossed for Team {team_alias}
+ Budget Crossed for Team {team_alias}

Your Teams LLM API usage has crossed it's budget of ${max_budget} , current spend is ${webhook_event.spend}

@@ -123,7 +123,7 @@ async def send_team_budget_alert(webhook_event: WebhookEvent) -> bool: email_event = { "to": recipient_emails_str, - "subject": f"LiteLLM: {event_name}", + "subject": f"LiteLLM {event_name} for Team {team_alias}", "html": email_html_content, }