A basic package for sending email messages from python via SMTP.
- Download from git
pip install -e .
from notify import Notify, Message
msg = Message(subject="Test", body="Text")
with Notify("[email protected]") as ntfy:
ntfy.send(msg)| Provider | Server Address | Port (TLS) |
|---|---|---|
| Outlook | smtp-mail.outlook.com | 587 |
| Gmail | smtp.gmail.com | 587 |
| Yahoo | smtp.mail.yahoo.com | 587 |