UNPKG

@toobstudio/send-email

Version:

Secure SDK for sending emails using the TOOB Mail API

8 lines (7 loc) 198 B
export interface SendEmailParams { to?: string[]; subject: string; message: string; plain_text?: string; } export declare function sendEmail(params: SendEmailParams): Promise<void>;