
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
bymail
Advanced tools
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.
📬 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.
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).
Send emails: Use SendMail to send messages via the tempmail.plus API.
Flexible imports: from ByMail import SendMail or from ByMail.send import SendMail.
Status & response: SendMail.status() to check success; .response() for raw response.
pip install ByMail -U
from ByMail import Mail, SendMail
# 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
# )
from ByMail import SendMail
def main():
mail = SendMail(
from_="your-user@merepost.com",
to="to-user@fexpost.com",
subject="Hello from ByMail",
text="<b>Hi!</b> This is a test.", # default content_type is "text/html"
# content_type="text/plain", # optionally switch to plain text
)
print(mail.status()) # True if sent successfully
# Inspect raw response if needed:
# print(mail.response().status_code, mail.response().text)
if __name__ == '__main__':
main()
FAQs
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.
We found that bymail demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.