📬 ByMail is a lightweight Python library to fetch inbox messages from temporary email providers. It validates domains and supports both one-shot and continuous (looping) fetching.
🚀 Features
Multiple domains: Works with a curated set of temp-mail domains.
Simple API: Pass a full email string (e.g., name@mailto.plus).
Looping mode: Print incoming emails continuously (Loop=True).
One-shot mode: Get a list of emails to iterate yourself (Loop=False).
⚙️ Installation
pip install ByMail -U
🧠 Usage Example
`from ByMail import Mail
One-shot: you iterate
m = Mail(Email="your-user@mailto.plus", Loop=False)
for mail in m.get_inboxes():
print(mail)
Looping: prints internally and blocks (Ctrl+C to stop)
m = Mail("your-user@mailto.plus", Loop=True)
m.get_inboxes()
✅ Supported Domains (
mailto.plus, fexpost.com, fexbox.org
mailbox.in.ua, rover.info, chitthi.in
fextemp.com, any.pink, merepost.com
)`
📦 Version
v1.0.0 – Full email API, domain validation, loop/non-loop modes
⚠️ Note: Early version; improvements and more providers planned.
💬 Help & Support .
Follow updates via the Telegram Channel (@PyCodz).
Top comments (0)