NodeJS API for temp-mail.org
⚠
Temp-mail.org
devs remade their API on Oct 2020 so it uses a secured way to make requests.
I will try to bypass it because it looks interesting.
My work is available in the experiments.js
file.
⚠
npm install temp-mail-api
const TM = require('temp-mail-api');
const email1 = new TM('temp-email'); // It will create an address like "temp-email@xxxxxx.xxx"
// Waiting for the email to be ready (recommended)
email1.ready((email, error) => {
if (!error) {
console.log(`Email address is ${email}`);
// Getting email list
email1.getEmails((emails, error) => {
if (!error) {
console.log('Email list :', emails);
} else console.error(error);
});
// Fetching email list every 1 second and log if there is a new email
setInterval(() => {
email1.getEmails((emails, error, change) => {
if (!error) {
if (change) console.log('New mail !', emails);
} else console.error(error);
});
}, 1000);
} else console.error(error);
});
If you have errors in console or unwanted behavior, please create an issue here.