marrow / mailer

A light-weight, modular, message representation and mail delivery framework for Python.
MIT License
279 stars 62 forks source link

SMTP transport masks errors from Message #48

Open agronholm opened 11 years ago

agronholm commented 11 years ago

The SMTP transport can report a successful sending of a Message even though an exception is raised in send_with_smtp(). This is because of the finally: block in deliver() which may raise a TransportExhaustedException.