cypress-maildev
Version:
An easy-to-use cypress bunch of commands to use Maildev API for tests messages reception !
23 lines (22 loc) • 430 B
TypeScript
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;
};
};