postmark
Version:
Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com
28 lines (27 loc) • 724 B
TypeScript
import { InboundRecipient } from "../../messages/InboundMessage";
import { Attachment, Header } from "../../message/SupportingTypes";
export interface InboundWebhook {
From: string;
FromName: string;
FromFull: InboundRecipient;
To: string;
ToFull: InboundRecipient[];
Cc: string;
CcFull: InboundRecipient[];
Bcc: string;
BccFull: InboundRecipient[];
ReplyTo: string;
OriginalRecipient: string;
Subject: string;
Date: string;
MailboxHash: string;
Tag?: string;
MessageID: string;
MessageStream: string;
RawEmail?: string;
TextBody: string;
HtmlBody: string;
StrippedTextReply: string;
Headers: Header[];
Attachments: Attachment[];
}