Type alias EmailHeaderFields

EmailHeaderFields: {
    bcc: EmailAddress[] | null;
    cc: EmailAddress[] | null;
    from: EmailAddress[] | null;
    headers?: EmailHeader[];
    inReplyTo: string[] | null;
    messageId: string[] | null;
    references: string[] | null;
    replyTo: EmailAddress[] | null;
    sender: EmailAddress[] | null;
    sentAt: Date | null;
    subject: string | null;
    to: EmailAddress[] | null;
}

Type declaration