File size: 484 Bytes
e63c620
 
a18b04f
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# agents/notebook/mailer.py

def send_email(to_email: str, subject: str, body: str):
    try:
        msg = EmailMessage()
        msg["Subject"] = subject
        msg["From"] = "[email protected]"
        msg["To"] = to_email
        msg.set_content(body)

        with smtplib.SMTP("localhost") as server:
            server.send_message(msg)
        return True
    except Exception as e:
        print(f"[!] Ошибка отправки email: {e}")
        return False