Install
openclaw skills install disposable-emailCreate disposable Mail.tm inboxes and programmatically read incoming emails/OTP codes. Use when asked to generate a temporary email, poll inbox messages, extract OTPs, or automate email verification testing with Mail.tm.
openclaw skills install disposable-emailCreate and read temporary Mail.tm inboxes for testing email flows.
Create inbox + token:
python3 scripts/create_inbox.pyaddress, password, token, accountId, domain.List messages:
python3 scripts/read_inbox.py --token <TOKEN> --listRead latest message:
python3 scripts/read_inbox.py --token <TOKEN> --latestWait for OTP from incoming mail:
python3 scripts/read_inbox.py --token <TOKEN> --wait-otp --timeout 120 --interval 3\\b(\\d{4,8})\\b--otp-regex.End-to-end (create inbox + wait for first message/OTP):
python3 scripts/e2e_otp.py --timeout 120 --interval 3inbox_created JSON (address/password/token).otp_found, message_received_no_otp, or timeout.--save ./otp-result.json to persist the latest emitted result to disk.create_inbox.py and share the generated email address.read_inbox.py (--latest or --wait-otp).