Skip to content

thatcelt/MailPorary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MailPorary

Simple API Wrapper of https://mailporary.com/ru for pentesting, accounts making and testing. Doesn't have limitations, only your needs.

Installation

npm i mailporary

Examples

import { MailPorary } from 'mailporary';

(async () => {
  const mailporary = new MailPorary();
  await mailporary.authorize();
  const mail = mailporary.getMail();
  const messages = await mailporary.getInbox(mail);

  if (messages.length) {
    const message = await mailporary.getMessage(mail, messages[0].id);
    console.log(message.body.text);
  }
})();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors