SkillAgentSearch skills...

MailTm

MailTm - Temporary Email

Install / Use

/learn @MainSilent/MailTm
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

MailTM API Wrapper

Downloads

Downloads Downloads

MailTm is a free temporary mail service, This library is useful for automation tasks such as making accounts that needs email verification.

Installation

Windows:

pip install MailTm

Linux/Mac OS:

pip3 install MailTm

Example

from mailtm import Email

def listener(message):
    print("\nSubject: " + message['subject'])
    print("Content: " + message['text'] if message['text'] else message['html'])

# Get Domains
test = Email()
print("\nDomain: " + test.domain)

# Make new email address
test.register()
print("\nEmail Adress: " + str(test.address))

# Start listening
test.start(listener)
print("\nWaiting for new emails...")

Documentation

API: https://mail.tm

register(username=None, password=None, domain=None) | Make an email account with random credentials, You can also pass a username, password and domain to use the same account.

start(listener, interval=3) | Start listening for new emails, Interval means how many seconds takes to sync, And you also need to pass a function for listener, This function gets called when new email arrive.

stop() | Stop listening for new emails.

View on GitHub
GitHub Stars44
CategoryDevelopment
Updated3mo ago
Forks21

Languages

Python

Security Score

87/100

Audited on Dec 4, 2025

No findings