shreyas-joshi's picture
feat: Implement chunking and graph management for code review environment
899a7c7
import smtplib
def send_email(recipient: str, body: str) -> None:
client = smtplib.SMTP("localhost")
client.sendmail("noreply@example.com", [recipient], body)