Python send e-mail async with trio

148 Views Asked by At

I want to send e-mails in an asynchronous way by using the package trio. I found the package aiosmtplib, but this is only for asyncio.

Is there any package which I can use for it, or has anyone an idea of how to implement this with trio?

Update: I found this package mailers, which describes that it uses anyio, so that trio can be used. But under the hood, it uses aiosmtplib, too.

0

There are 0 best solutions below