UNPKG

@timshel_npm/maildev

Version:

SMTP Server with async API and Web Interface for viewing and testing emails during development

6 lines (5 loc) 243 B
import type { EmailAddress } from "../type"; /** * Filter out addresses from recipients, the remaining are the bcc. */ export declare function calculateBcc(recipients: EmailAddress[], to: EmailAddress[], cc: EmailAddress[]): EmailAddress[];