malq
a temporary email service. no credentials, just mail.
there's only 2 endpoints that source from 51 temporary mail services!
GET
GET
note: due to our some of suppliers using websockets, emails are "destroyed" after 2 minutes. womp womp.
this service is on github. thank me later.
/api/v1/session - creates a new mail session{
"address": "email@sometempmail.com",
"token": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
"provider": "sometempmail.com"
}
GET
/api/v1/inbox/:token - retrieves emails for the session[
{
"from": "noreply@company.com",
"to": "email@sometempmail.com",
"subject": "Hello World!",
"body": "This is a temporary email service.",
"date": 1784733159943
},
...
]
note: due to our some of suppliers using websockets, emails are "destroyed" after 2 minutes. womp womp.
this service is on github. thank me later.