Typescript client for interacting with the GetTestMail API, which provides a simple way to create temporary email addresses and receive emails sent to them.
npm install @gettestmail/typescript-sdk
Works on Browser, Node.js and React Native!
To create a new GetTestMail API client, you need to instantiate the GetTestMail class with your API key. To get an API key, sign up for a free account.
import { GetTestMail } from "@gettestmail/typescript-sdk";
const testMail = new GetTestMail('YOUR_API_KEY')
const mailBox = await testMail.createNew()
const { message } = await testMail.waitForMessage(mailBox.id)