node-temp-mail

2.0.2 • Public • Published

node-temp-mail

Node wrapper for creating and fetching temporary, disposable emails, as well as their new messages.

Installation

npm install node-temp-mail

Usage

const TempMail = require("node-temp-mail");

// Let's create an address object so it can be accessed by the module.
const address = new TempMail("testAddress");

// We already have the address object, so now let's access it and get a list of the emails in a nice & neat json object.
address.fetchEmails((err, body) => {
  console.log(body);
});

// Or we can use the async/await syntax
const body = await address.fetchEmails();

// If for any reason you need to see the full temporary email address, you can use the following function.
address.getAddress();

Package Sidebar

Install

npm i node-temp-mail

Weekly Downloads

189

Version

2.0.2

License

ISC

Unpacked Size

1.14 MB

Total Files

11

Last publish

Collaborators

  • jbecker