AsyncSender is a tiny module for SMTP mail sending, Inspired by Sender.
Project description
AsyncSender provides a simple interface to set up a SMTP connection and send email messages asynchronously.
Installation
Install with the following command
pip install async_sender
Quickstart
AsyncSender is really easy to use. Emails are managed through a Mail instance
from async_sender import Mail
import asyncio
loop = asyncio.get_event_loop()
mail = Mail()
loop.run_until_complete(mail.send_message("Hello", from_address="from@example.com",
to="to@example.com", body="Hello world!"))
Message
To send one message, we need to create a Message instance
from async_sender import Message
msg = Message("demo subject", from_address="from@example.com",
to="to@example.com")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
async_sender-1.3.4.tar.gz
(5.3 kB
view hashes)
Built Distribution
Close
Hashes for async_sender-1.3.4-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8306dea125fa5c8a2741e81dcdb938d45f5defa8606d5129b08d387b8c421035 |
|
MD5 | 3b445466dbba25f8ad4974630e2dc386 |
|
BLAKE2b-256 | 930302b2c7136ad17230d2a73eaa035f982e6a86cf6898e5e09360b26caaf31b |