UNPKG

cypress-maildev

Version:

An easy-to-use cypress bunch of commands to use Maildev API for tests messages reception !

22 lines (20 loc) 376 B
import { Address } from "./Address"; export type Email = { id: string; subject: string; time: string; to: Address[]; from: Address[]; text: string; html: string; read: boolean; messageId: string; priority: string; headers: { [key: string]: string }; envelope: { from: string; to: string[]; host: string; remoteAddress: string; }; };