UNPKG

@visulima/email

Version:

A comprehensive email library with multi-provider support, crypto utilities, and template engines

29 lines (28 loc) 634 B
import type { BaseConfig, EmailOptions } from "../../types.d.ts"; /** * AhaSend configuration */ export interface AhaSendConfig extends BaseConfig { /** * AhaSend API key */ apiKey: string; /** * AhaSend API endpoint * Defaults to: https://api.ahasend.com */ endpoint?: string; } /** * AhaSend-specific email options */ export interface AhaSendEmailOptions extends EmailOptions { /** * AhaSend template ID for template-based emails */ templateId?: string; /** * Template variables for AhaSend templates */ templateVariables?: Record<string, unknown>; }