@bitblit/ratchet-common
Version:
Common tools for general use
14 lines (13 loc) • 376 B
TypeScript
import { EmailAttachment } from './email-attachment.js';
export interface ReadyToSendEmail {
destinationAddresses?: string[];
bccAddresses?: string[];
attachments?: EmailAttachment[];
fromAddress?: string;
txtMessage?: string;
htmlMessage?: string;
subject?: string;
fromName?: string;
doNotAutoBcc?: boolean;
doNotArchive?: boolean;
}