UNPKG

@upyo/core

Version:

Simple email sending library for Node.js, Deno, Bun, and edge functions

7 lines 676 B
import { Address, EmailAddress, formatAddress, isEmailAddress, parseAddress } from "./address.js"; import { Attachment, isAttachment } from "./attachment.js"; import { Priority, comparePriority } from "./priority.js"; import { ImmutableHeaders, Message, MessageConstructor, MessageContent, createMessage } from "./message.js"; import { Receipt } from "./receipt.js"; import { Transport, TransportOptions } from "./transport.js"; export { Address, Attachment, EmailAddress, ImmutableHeaders, Message, MessageConstructor, MessageContent, Priority, Receipt, Transport, TransportOptions, comparePriority, createMessage, formatAddress, isAttachment, isEmailAddress, parseAddress };