1.0.0 • Published 5 months ago

mailnesia-api v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Type Definitions

type InboxMessage = {
  id: string;
  date: string;
  from: string;
  subject: string;
};

type Message = {
  id: string;
  date: string;
  from: string;
  subject: string;
  html: string;
  text: string;
};

function getInbox(mailbox: string): Promise<InboxMessage[]>

function getMessage(mailbox: string, id: string): Promise<Message | null>
1.0.0

5 months ago