Releases: cole/aiosmtplib
v1.1.3
-
Feature: add pause and resume writing methods to
SMTPProcotol
, via
asyncio.streams.FlowControlMixin
(thanks @ikrivosheev). -
Bugfix: allow an empty sender (credit @ikrivosheev)
-
Cleanup: more useful error message when login called without TLS
v1.1.2
v1.1.1
v1.1.0
-
Feature: Added send coroutine api.
-
Feature: Added SMTPUTF8 support for UTF8 chars in addresses.
-
Feature: Added connected socket and Unix socket path connection options.
-
Feature: Wait until the connect coroutine is awaited to get the event loop.
Passing an explicit event loop via the loop keyword argument is deprecated
and will be removed in version 2.0. -
Cleanup: Set context for timeout and connection exceptions properly.
-
Cleanup: Use built in start_tls method on Python 3.7+.
-
Cleanup: Timeout correctly if TLS handshake takes too long on Python 3.7+.
-
Cleanup: Updated SMTPProcotol class and removed StreamReader/StreamWriter
usage to remove deprecation warnings in 3.8. -
Bugfix: EHLO/HELO if required before any command, not just when using
higher level commands. -
Cleanup: Replaced asserts in functions with more useful errors (e.g.
RuntimeError). -
Cleanup: More useful error messages for timeouts (thanks ikrivosheev!),
including two new exception classes,SMTPConnectTimeoutError
and
SMTPReadTimeoutError
v1.0.6
v1.0.5
v1.0.4
v1.0.3
v1.0.2
1.0.1: bugfix release
- Commands were getting out of order when using the client as a context manager within a task
- multiple tasks calling connect would get confused
- EHLO/HELO responses were being saved even after disconnect
- RuntimeError on client cleanup if event loop was closed
- CRAM-MD5 auth was not working
- AttributeError on STARTTLS under uvloop