Mailbox Reader
Read or redirect for supported email domains (Temp mail, Hotmail, Outlook, etc.).
7,178
Page Views
| Time | From | Subject | Action |
|---|
action = get-code Requiredemail = Your email address Requiredsince = Unix timestamp Optionalsincelet lastTimestamp = 0;
async function getCode(email) {
const url = `/api/mailbox-read?action=get-code&email=${email}&since=${lastTimestamp}`;
const res = await fetch(url);
const data = await res.json();
if (data.status && data.code) {
lastTimestamp = data.email_timestamp;
return data.code; // "650599"
}
return null;
}
{
"status": true,
"code": "650599",
"email_timestamp": 1736935800,
"subject": "...",
"from": "[email protected]"
}