Sfoglia il codice sorgente

Fix: `Email` error. (#6701)

### What problem does this PR solve?

#6695

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.18.0
Kevin Hu 7 mesi fa
parent
commit
61c0dfab70
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. 4
    1
      agent/component/email.py

+ 4
- 1
agent/component/email.py Vedi File

@@ -82,7 +82,10 @@ class Email(ComponentBase, ABC):
logging.info(f"Connecting to SMTP server {self._param.smtp_server}:{self._param.smtp_port}")
context = smtplib.ssl.create_default_context()
with smtplib.SMTP_SSL(self._param.smtp_server, self._param.smtp_port, context=context) as server:
with smtplib.SMTP(self._param.smtp_server, self._param.smtp_port) as server:
server.ehlo()
server.starttls(context=context)
server.ehlo()
# Login
logging.info(f"Attempting to login with email: {self._param.email}")
server.login(self._param.email, self._param.password)

Loading…
Annulla
Salva